我必须解释以下 MATLAB 代码:
load('pmat.mat');
vecP = pmat.pmat;
我不知道“pmat.mat”的样子。我想知道点(。)运算符是做什么的。我将它应用于向量,它返回一个错误。
>> x=[1 2 3]
x =
1 2 3
>> x.x
Attempt to reference field of non-structure array.
我必须解释以下 MATLAB 代码:
load('pmat.mat');
vecP = pmat.pmat;
我不知道“pmat.mat”的样子。我想知道点(。)运算符是做什么的。我将它应用于向量,它返回一个错误。
>> x=[1 2 3]
x =
1 2 3
>> x.x
Attempt to reference field of non-structure array.