matrix plotting

4 Ansichten (letzte 30 Tage)
Zach
Zach am 17 Mai 2011
If I have a matrix x=[1 2 3 4] and a vector y=[1 4 9 16] and make the matrix z=[x; y] what is the equivalent matrix plot of z to scatter(x,y).

Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 17 Mai 2011
scatter(z(1,:),z(2,:))
or
scatter(z(1:2:end),z(2:2:end))
%Sorry misread your inputs
  1 Kommentar
Zach
Zach am 17 Mai 2011
For that to work it would have to be scatter(z(1:(numel(z)/2)),z((numel(z)/2)+1:end)) but that's not what I'm trying to plot. I want to row 1 vs. row 2. Is there a way to call the row of a matrix?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by