Why do I get this error Code generation does not support display for MATLAB classes. 'dsp.HDLIFFT' is a class. ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Pablo Medina
am 13 Jul. 2016
Kommentiert: Walter Roberson
am 13 Jul. 2016
I am trying to call a function, which create dsp.IFFT system object, inside another for HDL Code generation.
My Code: %main function
function [out1,out2] = main(x,y,z)
%call subfunction 1
out1 = sub1(x);
%call subfunction 2
out2 = sub2(y,z);
end
subfucntion 2 codecode:
function [yOut,validOut] = HDLIFFT128(yIn,validIn)
persistent ifft128;
if isempty(ifft128)
ifft128 = dsp.HDLIFFT('FFTLength',128);
end
[yOut,validOut] = step(ifft128,yIn,validIn);
end
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 13 Jul. 2016
The connection between your two routines is not clear.
I suspect the problem might be because you have not put semi-colon on the end of your assignments to out1, so you are requesting that the result be displayed. If the result is not numeric then the coder will not know how to display it.
Note that you do not assign to out2 in your main function.
2 Kommentare
Walter Roberson
am 13 Jul. 2016
I would suggest breaking it up into two pieces, one of which constructs the ifft128 object, and the other of which expects that object to be always input.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!