博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Operators and special characters in matlab
阅读量:4040 次
发布时间:2019-05-24

本文共 3511 字,大约阅读时间需要 11 分钟。

Operators and special characters.   Arithmetic operators.    plus       - Plus                               +        uplus      - Unary plus                         +        minus      - Minus                              -        uminus     - Unary minus                        -        mtimes     - Matrix multiply                    *        times      - Array multiply                    .*        mpower     - Matrix power                       ^        power      - Array power                       .^        mldivide   - Backslash or left matrix divide    \        mrdivide   - Slash or right matrix divide       /        ldivide    - Left array divide                 .\        rdivide    - Right array divide                ./        idivide    - Integer division with rounding option.    kron       - Kronecker tensor product      Relational operators.    eq         - Equal                             ==         ne         - Not equal                         ~=         lt         - Less than                          <          gt         - Greater than                       >          le         - Less than or equal                <=         ge         - Greater than or equal             >=        Logical operators.    relop      - Short-circuit logical AND         &&         relop      - Short-circuit logical OR          ||         and        - Element-wise logical AND           &          or         - Element-wise logical OR            |          not        - Logical NOT                        ~          punct      - Ignore function argument or output ~    xor        - Logical EXCLUSIVE OR    any        - True if any element of vector is nonzero    all        - True if all elements of vector are nonzero   Special characters.     colon      - Colon                              :     paren      - Parentheses and subscripting      ( )                  paren      - Brackets                          [ ]         paren      - Braces and subscripting           { }              punct      - Function handle creation           @    punct      - Decimal point                      .          punct      - Structure field access             .          punct      - Parent directory                   ..         punct      - Continuation                       ...        punct      - Separator                          ,          punct      - Semicolon                          ;          punct      - Comment                            %          punct      - Invoke operating system command    !                punct      - Assignment                         =    punct      - Quote                              '          transpose  - Transpose                         .'    ctranspose - Complex conjugate transpose        '     horzcat    - Horizontal concatenation          [,]         vertcat    - Vertical concatenation            [;]         subsasgn   - Subscripted assignment          ( ),{ },.       subsref    - Subscripted reference           ( ),{ },.       subsindex  - Subscript index    metaclass  - Metaclass for MATLAB class         ?   Bitwise operators.    bitand     - Bit-wise AND.    bitcmp     - Complement bits.    bitor      - Bit-wise OR.    bitxor     - Bit-wise XOR.    bitset     - Set bit.    bitget     - Get bit.    bitshift   - Bit-wise shift.   Set operators.    union      - Set union.    unique     - Set unique.    intersect  - Set intersection.    setdiff    - Set difference.    setxor     - Set exclusive-or.    ismember   - True for set member.

转载地址:http://vnxdi.baihongyu.com/

你可能感兴趣的文章
android中shader的使用
查看>>
java LinkedList与ArrayList迭代器遍历和for遍历对比
查看>>
drat中构造方法
查看>>
JavaScript的一些基础-数据类型
查看>>
JavaScript基础知识(2)
查看>>
转载一个webview开车指南以及实际项目中的使用
查看>>
android中对于非属性动画的整理
查看>>
一个简单的TabLayout的使用
查看>>
ReactNative使用Redux例子
查看>>
Promise的基本使用
查看>>
coursesa课程 Python 3 programming 统计文件有多少单词
查看>>
coursesa课程 Python 3 programming 输出每一行句子的第三个单词
查看>>
Returning a value from a function
查看>>
coursesa课程 Python 3 programming Functions can call other functions 函数调用另一个函数
查看>>
coursesa课程 Python 3 programming The while Statement
查看>>
course_2_assessment_6
查看>>
coursesa课程 Python 3 programming course_2_assessment_7 多参数函数练习题
查看>>
coursesa课程 Python 3 programming course_2_assessment_8 sorted练习题
查看>>
在unity中建立最小的shader(Minimal Shader)
查看>>
1.3 Debugging of Shaders (调试着色器)
查看>>