how to plot in simulink

37 views (last 30 days)
Prajwal N
Prajwal N on 28 Mar 2024 at 3:05
Edited: Pramil on 1 Apr 2024 at 4:41
i designed a simulink model where i was in need to plot the result vectro obtained , so how can i do that as i didnt get any method to do that
i want to plot my ouput vs input which are both vectors
  1 Comment
Manikanta Aditya
Manikanta Aditya on 28 Mar 2024 at 3:57
You can plot the output versus input vectors in Simulink using the To Workspace block for saving the vectors and then using MATLAB’s plot function.
You can Save the vectors in Simulink, run the model and plot the vectors in MATLAB
plot(input, output)
xlabel('Input')
ylabel('Output')
title('Output vs Input')

Sign in to comment.

Accepted Answer

Pramil
Pramil on 28 Mar 2024 at 13:43
Hello Prajwal N,
What Manikanta Aditya suggests works but if you do not want to save your output and just want to plot,
you can use the "scope" block for plotting the input and output of your Simulink model.
Here is the documentation for the same:
This would resolve your issue.
  3 Comments
Prajwal N
Prajwal N on 28 Mar 2024 at 14:18
@Pramil, but the scope gives only plots of time domain right means x axis has time..or can we change x axis to our input vector. Or using To workspace is the only method
Pramil
Pramil on 1 Apr 2024 at 4:12
Edited: Pramil on 1 Apr 2024 at 4:41
Prajwal N the "Scope" will plot your data against time, in cases where you want to plot your "Input" on x-axis and "Output" on y-axis, use the "XY-Graph" block.
You can refer this link for more information about the block:

Sign in to comment.

More Answers (0)

Categories

Find more on Modeling in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!