How to plot a nonlinear system of 3 equations with 3 symbolic variables in MATLAB?

前端 未结 2 1878
花落未央
花落未央 2021-01-25 13:05

I don\'t have a lot of experience with Matlab. I know that you can plot equations with 2 variables like this:

ezplot(f1)
hold on
ezplot(f2)
hold off;
         


        
2条回答
  •  攒了一身酷
    2021-01-25 13:46

    "hold on" just says to not erase existing lines & markers on the current axis. you should just be able to do

    ezplot(f1);
    hold on;
    ezplot(f2);
    ezplot(f3);
    hold off;
    

    I've never used ezplot so can't help you with that one.

提交回复
热议问题