graphing x as a function of y, y as a function of x in one plot

2 views (last 30 days)
Hello,
I am seriously new to any kind of programming, so apologies in advance.
I am trying to graph two functions (nullx, nully) where null x is a function of y and null y is a funciton of x.
The graph should be on a typical x-y plane, but I am not getting any plots out of my code. I appreciate any help, and please explain specifically. Thank you!
a = 0.2;
%nullx= -(y-a-a*y)/(-a-a*y);
nully= -(x-a-a*x)/(-a-a*x);
for y = 1:10
nullx= -(y-a-a*y)/(-a-a*y);
plot(0:10,nullx);
end

Answers (1)

Cris LaPierre
Cris LaPierre on 13 Apr 2021
Edited: Cris LaPierre on 13 Apr 2021
You would benefit by going through MATLAB Onramp.
  • Ch 3 covers creating vectors and matrices
  • Ch 6 covers array calculations (eliminating the need to use a for loop)
  • Ch 9 covers plotting
  • Ch 13 covers for loops, and more importantly, capturing the result from each loop

Categories

Find more on MATLAB 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!