how to plot three variables in a line graph with values ?

5 views (last 30 days)
ax[1] = 0.98 ax[2] = 1.2 ax[3] = 0.23
bx[1] = 2.1 bx[2] = 0.236 bx[3] = 1.25
cx[1] = 0.01 cx[2] = 0.025 cx[3] = 0.52
plot(ax,bx,cx); is possible ?

Accepted Answer

Jan
Jan on 14 May 2013
Edited: Jan on 14 May 2013
ax = [0.98, 1.2, 0.23];
bx = [2.1, 0.236, 1.25];
cx = [0.01, 0.025, 0.52];
What do you expect now? Is ax the x-component of the line? Or should it be 1:3 implicitly?
x = 1:3;
plot(x, ax, x, bx, x, cx); % EDITED, Typo ay->ax
Or:
plot(x, [ax; bx; cx])

More Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 14 May 2013
Edited: Azzi Abdelmalek on 14 May 2013
ax(1) = 0.98
ax(2) = 1.2
ax(3) = 0.23
bx(1) = 2.1
bx(2) = 0.236
bx(3) = 1.25
cx(1) = 0.01
cx(2) = 0.025
cx(3) = 0.52
plot(ax,bx,cx)
Use () instead of [ ]
  2 Comments
Jan
Jan on 14 May 2013
Edited: Jan on 14 May 2013
What do you expect as output, when you call plot() with three vectors?
I get this for your code:
??? Error using ==> plot
Data must be a single matrix Y or a list of pairs X,Y
Waleed Eid
Waleed Eid on 17 Apr 2022
you have incorrect code.
Error using plot
Data must be a single input of y --values or
one or more pairs of x -- and y--values.

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!