Hello
I am a beginner at solidthinking COMPOSE. I just want to know how to plot the following function. I have written the code, but it shows the error.
Also, would be great if someone can show me the command for 3D plot
sigma_inf=100;
a=10;
r=10;
theta=[0:0:pi/2];
sigma_rr = @(theta)((sigma_inf/2)*(1-(a/r)^2))+(sigma_inf/2)*(1-4*(a/r)^2+3*(a/r)^4)*cos(2*theta);
sigma_theta =@(theta)((sigma_inf/2)*(1+(a/r)^2))-(sigma_inf/2)*(1+3*(a/r)^4)*cos(2*theta);
plot(theta,sigma_rr);
Thanks in advance