- ‘plot’: creates a 2-D line plot https://www.mathworks.com/help/matlab/ref/plot.html?searchHighlight=plot&s_tid=srchtitle_support_results_1_plot
- ‘length’: returns the length of the largest array dimension http://www.mathworks.com/help/matlab/ref/length.html?searchHighlight=length&s_tid=srchtitle_support_results_1_length
Why is this code not creating the plot ?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Is showing a message saying "error using plot Vectors must be the same lenght "
0 Kommentare
Antworten (1)
Jaswanth
am 27 Dez. 2023
Bearbeitet: Jaswanth
am 27 Dez. 2023
Hi Josue Alvarado Rivera,
I understand that you want to know the reason why the specified code is not creating the plot. From the information you have provided related to the code and the error message, the most likely reason could be that the x and y variables you are trying to plot are of different lengths.
For vector and matrix data, to plot a set of coordinates connected by line segments, x and y need to be specified as vectors of the same length.
Kindly verify the length of the vectors x and y using the following command and check if they are the same.
length(x)
length(y)
Please refer the following MathWorks documentation to know more about the functions mentioned above.
Hope the provided information helps you in rectifying your problem.
Thanks.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!