我有一个 FFT,我想将其保存到 .mat 文件中,然后从该 .mat 文件中读取它。我想将我加载的数据用于一个部门。这是我的代码
save ('file_fft','a_fft');
b = load ('file_fft');
c = abs (d_fft) ./ abs (b);
在我的命令窗口中,我看到了
b = file_fft [4000 * 1 double].
然后我收到错误消息
'Undefined function 'abs' for input arguments of type 'struct''
我在删除abs后尝试过。我收到了这个错误
'Undefined function 'rdivide' for input arguments of type 'struct''
有谁知道它为什么不起作用以及我该如何解决?