robax25
- 238
- 3
how I print x^2/3
Here is my code
Here is my code
Matlab:
x=-100:100;
y=x.^(2/3),
plot(x,y)
x=-100:100;
y=x.^(2/3),
plot(x,y)
It is hard to help you without more details.robax25 said:Matlab does not display right graph. I think that it displays wrong.
x=-100:100;
y=real(x.^(2/3)) %%Real part only
plot(x,y)