Clear Filters
Clear Filters

can't plot using user-defined function block.

1 view (last 30 days)
I have a Matlab code to plot a graph. but when I used the same code in Simulink as a user-defined function, I am getting a lot of parellel lines instead of the desired graph in the scope block. does anyone know how to fix this?
  2 Comments
madhan ravi
madhan ravi on 21 Feb 2019
Edited: madhan ravi on 21 Feb 2019
share your model with your user defined function
vishnu kannan
vishnu kannan on 29 Mar 2019
SIMULINK ERROR.png
The above shown figure is my problem.
the matlab code in the user-defined function is " y=sin(x) ". but i get this plot instead of a sin wave. i have attached the code. this error is equivalent to the original error i am facing in my project.
i added an input in user-defined-function (u). but i am not using it. no input is needed from simulink, i only want to execute the .m file in userdefined function and display the output in the scope.
is there any way to correct this?

Sign in to comment.

Accepted Answer

Fangjun Jiang
Fangjun Jiang on 29 Mar 2019
Edited: Fangjun Jiang on 29 Mar 2019
Keep in mind that this MATLAB Function block is executed at every simulation step you run. Your funciton ouputs 201 values at every step and these values are the same from step to step. That is why your scope shows 201 straight lines.
If you want to plot sin(x). One way to do it is to add a Simulink "Clock" block and connect its output to "u". Inside your function, simply specify it as y=sin(u).
  2 Comments
vishnu kannan
vishnu kannan on 30 Mar 2019
i want to execute the matlab code inside the user-defined function and plot using scope. my original code is very complex thats why i choose the simple code y=sin(x) to demonstrate my error.
is there any other way ?
Fangjun Jiang
Fangjun Jiang on 1 Apr 2019
Just remember that in Simulink, there is a "time" element. Everything goes along the simulated "time" once you press the "Run" button.
For the sake of plotting sin(x) in Simulink without time, you could use XY scope.

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!