Plotting certain values of a matrix

2 Ansichten (letzte 30 Tage)
Josh
Josh am 17 Mär. 2019
Kommentiert: Josh am 17 Mär. 2019
Hello I have a 100x1 matrix and would like to plot n=2 and n=100 values against x how would I go about doing this? Thanks for any help

Akzeptierte Antwort

madhan ravi
madhan ravi am 17 Mär. 2019
plot(repmat(100,100,1),x)
% ^^^-—-—-n
hold on
plot(repmat(2,100,1),x)
  9 Kommentare
madhan ravi
madhan ravi am 17 Mär. 2019
Bearbeitet: madhan ravi am 17 Mär. 2019
'y' represents color of the plot which is yellow.
See my original answer after using hold on plot another line to the same figure
doc hold
doc plot
I suggest you to do MATLAB onramp course which is free and takes few hours to complete by then you will get know the basics of MATLAB.
Josh
Josh am 17 Mär. 2019
Thanks for the help

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by