Plot one row of x with multi rows of Y

2 visualizzazioni (ultimi 30 giorni)
I have something like this values 25 is the X and remaing four values after that consitutes Y ..similarly for 50,100 ..250etc..how shall i pplot all these togetther.such like i get corresponding maps for each set of X.
25 646 490 700 669
50 1530 1388 1500 1666
75 2586 3260 882 1704
100 4411 4415 2419 2142
125 3002 2142 3409 3000
150 2027 1923 1339 1041
175 1250 2678 3260 3125
200 1388 2272 2678 1704
225 1339 2419 2884 1785
250 1470 2777 3260 1744
  2 Commenti
KSSV
KSSV il 14 Set 2020
Use plot. Wjat you expect actually?
Ramesh Bala
Ramesh Bala il 14 Set 2020
y1 = [25 646 490 700 669 ]; i have like this where the plot shows error

Accedi per commentare.

Risposta accettata

Walter Roberson
Walter Roberson il 14 Set 2020
bar(YourMatrix(:,1), YourMatrix(:,2:end))
  6 Commenti
Ramesh Bala
Ramesh Bala il 14 Set 2020
oh thanks ! yes you are right,I tried but it was not clear as they are not equal in nature and giving wrong plots.
Thanks again !
Walter Roberson
Walter Roberson il 14 Set 2020
plot(YourMatrix(:,1), YourMatrix(:,2:end))
perhaps.

Accedi per commentare.

Più risposte (1)

VBBV
VBBV il 14 Set 2020
Modificato: Walter Roberson il 14 Set 2020
X= 25:25:100;
Y = [646 490 700 669;1530 1388 1500 1666;2586 3260 882 1704;4411 4415 2419 2142];
bar(X,Y,'stacked');
I just shown upto 4 rows here you can add as the number of rows you want

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by