0
我必須解釋以下MATLAB代碼:MATLAB:A(點)運算符
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.