Filter löschen
Filter löschen

How would I go about plotting an equation?

1 Ansicht (letzte 30 Tage)
Raul
Raul am 15 Mär. 2012
I need to plot the following equation: (y/34) + (x/84) = 1; with 'y' and 'x' being numbers from 0-100. I know how to define x and y(i.e. x = (0:100) and likewise with 'y'), but when I try plotting the equation I just get a blank graph, can anyone guide me in the right direction, please?

Antworten (2)

Geoff
Geoff am 16 Mär. 2012
You are incorrect in your assumption that you define 'y' in the same manner as 'x'. To 'plot the equation' you first have to rearrange for y in terms of x, then plug your vector for x into that, and finally plot.
x = 0:100;
y = % you work it out
plot(x,y);

Rick Rosson
Rick Rosson am 15 Mär. 2012
Please post your code.

Kategorien

Mehr zu Graphics 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!

Translated by