Filter löschen
Filter löschen

How to poprely implement a matlab function in simulink

1 Ansicht (letzte 30 Tage)
Boleslaw Nadowski
Boleslaw Nadowski am 26 Jan. 2017
Beantwortet: Zoe Xiao am 3 Aug. 2017
Hello,
In sumulink, I am trying to create FFT output in two ways: with built-in simulink blocks, and with a Matlab function block (Simulink model attached). While biult-in blocks give a fine output, the function block is creating something I don't understand(also attached), what should I do for the function block to work fine(I need a function block for a much more complicated function later)?
The function code is as follows: function f = fun1(x) f = abs(fft(x)); end

Akzeptierte Antwort

Zoe Xiao
Zoe Xiao am 3 Aug. 2017
There is no 'unbuffer' functions in your MATLAB function. So the data on your plot contain fft results calculated at each sample times. You could plot any column corresponding to the simulation time between 150sec and 250sec, which will give you a meaningful spectrum. Or simply add 'unbuffer' block as you did on the other path.
If you still see the unmatching results after you include 'unbuffer' block, please contact the MathWorks technical support.

Weitere Antworten (0)

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by