Matlab变量
当前位置:以往代写 > Matlab教程 >Matlab变量
2019-06-14

Matlab变量

Matlab变量


在MATLAB情况中,每个变量都是数组或矩阵。

可以以简朴的方法分派变量。 譬喻,

x = 12       % defining x and initializing it with a value

MATLAB执行上述语句并返回以下功效 –

Trial>> x = 12       % defining x and initializing it with a value

x =

    12

它建设一个名为x1×1矩阵,并将值3存储在其元素中。再来看一个例子,如下,

x = sqrt(16)     % defining x and initializing it with an expression

MATLAB执行上述语句并返回以下功效 –

Trial>> x = sqrt(16)     % defining x and initializing it with an expression

x =

     4

请留意 –

  • 当变量输入到系统中,可以在接下来代码中引用。
  • 变量在利用前必需有值。
  • 当表达式返回未分派给任何变量的功效时,系统将其分派给名为ans的变量,稍后可以利用它。
  • 譬喻,

    sqrt(99)
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> sqrt(99)
    
    ans =
    
        9.9499
    

    可以利用这个ans变量 –

    sqrt(99);
    99.499/ans
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> sqrt(99);
    99.499/ans
    
    ans =
    
       10.0000
    

    下面我们再来看另一个例子 –

    x = 7 * 8;
    y = x * 7.89
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> x = 7 * 8;
    y = x * 7.89
    
    y =
    
      441.8400
    

    多重分派赋值

    可以在同一行上拥有多个赋值。 譬喻,

    a = 2; b = 7; c = a * b
    

    MATLAB执行上述语句并返回以下功效 –

    c = 14
    

    变量汗青

    who呼吁显示利用过的所有变量名。

    Trial>> who
    
    您的变量为:
    
    ans  x    y
    

    whos呼吁更多地显示变量 –

  • 当前在内存中的变量
  • 每个变量的范例
  • 每个变量的内存分派
  • 是否是复合的变量?
  • 执行功效如下 –

    Trial>> whos 
      Name      Size            Bytes  Class     Attributes
    
      ans       1x1                 8  double              
      x         1x1                 8  double              
      y         1x1                 8  double
    

    排除呼吁从存储器中删除所有(或指定的)变量。

    clear x     % it will delete x, won't display anything
    clear          % it will delete all variables in the workspace
                %  peacefully and unobtrusively
    

    长任务

    长任务可以通过利用省略号(...)扩展到另一行。 譬喻,

    initial_velocity = 0;
    acceleration = 9.8;
    time = 20;
    final_velocity = initial_velocity ...
        + acceleration * time
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> initial_velocity = 0;
    acceleration = 9.8;
    time = 20;
    final_velocity = initial_velocity + acceleration * time
    
    final_velocity =
    
       196
    

    名目呼吁

    默认环境下,MATLAB显示四位小数位数。这称为:短名目

    可是,假如要更准确,则需要利用format呼吁。

    format long呼吁显示十进制后的16位数字。

    譬喻 –

    Trial>> format long
    x = 7 + 10/3 + 5 ^ 1.2
    
    x =
    
      17.231981640639408
    

    另一个示譬喻下 –

    Trial>> format short
    x = 7 + 10/3 + 5 ^ 1.2
    
    x =
    
       17.2320
    

    format bank呼吁将数字舍入到小数点后两位。譬喻,

    format bank
    daily_wage = 177.45;
    weekly_wage = daily_wage * 6
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> format bank
    daily_wage = 177.45;
    weekly_wage = daily_wage * 6
    
    weekly_wage =
    
           1064.70
    

    MATLAB利用指数标记显示大数字。

    format short e呼吁以指数形式显示四位小数加上指数。

    譬喻,

    format short e
    4.678 * 4.9
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> format short e
    4.678 * 4.9
    
    ans =
    
       2.2922e+01
    

    format long e呼吁答允以指数形式显示十六位小数加上指数。 譬喻,

    format long e
    x = pi
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> format long e
    x = pi
    
    x =
    
         3.141592653589793e+00
    

    format rat呼吁给出计较功效最靠近的公道表达式。 譬喻,

    format rat
    4.678 * 4.9
    

    #p#分页标题#e#

    MATLAB执行上述语句并返回以下功效 –

    Trial>> format rat
    4.678 * 4.9
    
    ans =
    
        2063/90
    

    建设向量

    向量是数字的一维数组。MATLAB答允建设两种范例的向量:

  • 行向量
  • 列向量
  • 行向量是通过用方括号中的元素荟萃来建设的,利用空格或逗号脱离元素。

    譬喻,

    r = [7 8 9 10 11]
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> r = [7 8 9 10 11]
    
    r =
    
           7              8              9             10             11
    

    另一个示例

    r = [7 8 9 10 11];
    t = [2, 3, 4, 5, 6];
    res = r + t
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> r = [7 8 9 10 11];
    t = [2, 3, 4, 5, 6];
    res = r + t
    
    res =
    
           9             11             13             15             17
    

    列向量通过用方括号中的元素荟萃来建设,利用分号(;)来脱离元素。

    c = [7;  8;  9;  10; 11]
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> c = [7;  8;  9;  10; 11]
    
    c =
    
           7       
           8       
           9       
          10       
          11
    

    建设矩阵

    矩阵是数字的二维数组。

    在MATLAB中,通过将每行作为一系列空格或逗号脱离的元素输入矩阵,并以行号脱离一行。 譬喻,建设一个3x3的矩阵:

    m = [1 2 3; 4 5 6; 7 8 9]
    

    MATLAB执行上述语句并返回以下功效 –

    Trial>> m = [1 2 3; 4 5 6; 7 8 9]
    
    m =
    
           1              2              3       
           4              5              6       
           7              8              9
    

      关键字:

    在线提交作业