I want to plot relations like y^2=x^2(x+3)
in MATLAB without using ezplot
or doing algebra to find each branch of the function.
Does anyone know how I can do this? I usually create a linspace
and then create a function over the linspace
. For example
x=linspace(-pi,pi,1001);
f=sin(x);
plot(x,f)
Can I do something similar for the relation I have provided?
What you could do is use
solve
and allow MATLAB's symbolic solver to symbolically solve for an expression ofy
in terms ofx
. Once you do this, you can usesubs
to substitute values ofx
into the expression found fromsolve
and plot all of these together. Bear in mind that you will need to cast the result ofsubs
withdouble
because you want the numerical result of the substitution. Not doing this will still leave the answer in MATLAB's symbolic format, and it is incompatible for use when you want to plot the final points on your graph.Also, what you'll need to do is that given equations like what you have posted above, you may have to loop over each solution, substitute your values of
x
into each, then add them to the plot.Something like the following. Here, you also have control over the domain as you have desired:
Take special care of how I used
solve
. I specifiedy
because I want to solve fory
, which will give me an expression in terms ofx
.x
is our independent variable, and so this is important. I then specify a grid ofx
points from -1 to 1 - exactly 1000 points actually. I spawn a blank figure, then for as many solutions to the equation that we have, we determine the outputy
values for each solution we have given thex
values that I made earlier. I then plot these on a graph of these points. Note that I usedhold on
to add more points with each invocation toplot
. If I didn't do this, the figure would refresh itself and only remember the most recent call toplot
. You want to put all of the points on here generated from all of the solution. For some neatness, I threw a grid in.This is what I get: