zoukankan      html  css  js  c++  java
  • matlab矩阵函数

    Elementary matrices.
    zeros- Zeros array.
    ones- Ones array.
    eye- Identity matrix.
    repmat- Replicate and tile array.
    rand- Uniformly distributed random numbers.
    randn- Normally distributed random numbers.
    linspace- Linearly spaced vector.
    logspace- Logarithmically spaced vector.
    freqspace- Frequency spacing for frequency response.
    meshgrid- and arrays for 3-D plots.
    accumarray- Construct an array with accumulation.
    :- Regularly spaced vector and index into matrix.

    Basic array information.
    size- Size of array.
    length- Length of vector.
    ndims- Number of dimensions.
    numel- Number of elements.
    disp- Display matrix or text.
    isempty- True for empty array.
    isequal- True if arrays are numerically equal.
    isequalwithequalnans True if arrays are numerically equal.

    Matrix manipulation.
    cat- Concatenate arrays.
    reshape- Change size.
    diag- Diagonal matrices and diagonals of matrix.
    blkdiag- Block diagonal concatenation.
    tril- Extract lower triangular part.
    triu- Extract upper triangular part.
    fliplr- Flip matrix in left/right direction.
    flipud- Flip matrix in up/down direction.
    flipdim- Flip matrix along specified dimension.
    rot90- Rotate matrix 90 degrees.
    :- Regularly spaced vector and index into matrix.
    find- Find indices of nonzero elements.
    end- Last index.
    sub2ind- Linear index from multiple subscripts.
    ind2sub- Multiple subscripts from linear index.

    Multi-dimensional array functions.
    ndgrid- Generate arrays for N-D functions and interpolation.
    permute- Permute array dimensions.
    ipermute- Inverse permute array dimensions.
    shiftdim- Shift dimensions.
    circshift- Shift array circularly.
    squeeze- Remove singleton dimensions.

    Array utility functions.
    isscalar- True for scalar.
    isvector- True for vector.

    Special variables and constants.
    ans- Most recent answer.
    eps- Floating point relative accuracy.
    realmax- Largest positive floating point number.
    realmin- Smallest positive floating point number.
    pi- 3.1415926535897....
    i, j- Imaginary unit.
    inf- Infinity.
    NaN- Not-a-Number.
    isnan- True for Not-a-Number.
    isinf- True for infinite elements.
    isfinite- True for finite elements.
    why- Succinct answer.

    Specialized matrices.
    compan- Companion matrix.
    gallery- Higham test matrices.
    hadamard- Hadamard matrix.
    hankel- Hankel matrix.
    hilb- Hilbert matrix.
    invhilb- Inverse Hilbert matrix.
    magic- Magic square.
    pascal- Pascal matrix.
    rosser- Classic symmetric eigenvalue test problem.
    toeplitz- Toeplitz matrix.
    vander- Vandermonde matrix.
    wilkinson- Wilkinson's eigenvalue test matrix.




  • 相关阅读:
    洛谷 P2607 [ZJOI2008]骑士(基环树、树形dp)
    洛谷 P1453 城市环路(基环树,树形dp)
    基环树学习笔记 & CF711D Directed Roads
    centos7 系统安全加固方案
    来自后端的突袭? --开包即食的教程带你浅尝最新开源的C# Web引擎 Blazor
    作为一个C#程序员, 你应该上手Kotlin
    python中类和self讲解
    Mysql 存储引擎中InnoDB与Myisam的主要区别
    Apache和Nginx的区别
    PHP超全局变量
  • 原文地址:https://www.cnblogs.com/feisky/p/1586445.html
Copyright © 2011-2022 走看看