我想在矩阵中插入“双”类型值。为此,我正在使用以下 Matlab 代码行创建一个矩阵:
dpitchcnt=(N/256); %N is total number of byte
pitchvec(1:int64(dpitchcnt)); %creating a matrix 'pitchvec' with 1 row and int64(dpitchcnt)' columns
size(pitchvec) %Trying to display the size.
执行上述操作时出现以下错误:
“int64”类型的输入参数的未定义函数或方法“_colonobj”。==> 31 pitchevec(1:int64(dpitchcnt)) 处的样本错误;
我究竟做错了什么?