I am trying to find out what functions in matlab are supported when you are trying to do code generation.
Right now I am getting the following: Failed to eliminate a use of the MATLAB function 'real'. For non-simulation builds, uses of unsupported MATLAB functions are eliminated if they do not affect function outputs.
This is on a line like so:
enhanced_img = zeros(N);
enhanced_img = real(fft_2d(temp3));
Is it true that I can't use a simple function like real(), and will have to list it as extrinsic, or am I doing somethign else wrong?
Thanks