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

4 次查看(过去 30 天)
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

回答(1 个)

Cris LaPierre
Cris LaPierre 2021-4-13
编辑:Cris LaPierre 2021-4-13
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

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by