plotting a mathematical expression
2 views (last 30 days)
Show older comments
NILESH PANDEY
on 23 Nov 2016
Commented: Star Strider
on 24 Nov 2016
i am plotting a mathematical code phi_u given in attached file i observed that values of o and p are changing w.r.t x but values of t is keep coming constant sames goes to e and f are changing but g coming constant because of this phi1 and phi2 are constant and so phi_u is constant and i am getting a straight line. how this can be done so that phi_u vary w.r.t x?
one more thing if i use u*u or x*x in expression i get the error inner matrix dimension must be agree so i used power(u,2) why this
0 Comments
Accepted Answer
Star Strider
on 23 Nov 2016
I will not re-post your entire code, only the lines you need to change:
j=(1-k*u)./sqrt(k-k*k*power(u,2)); % <— USE ELEMENT-WISE DIVISION OPERATOR HERE
l=(1-u)./sqrt(1/k-power(u,2)); % <— USE ELEMENT-WISE DIVISION OPERATOR HERE
e=(1+k*u);
f=sqrt(k-k*k*power(u,2));
g=e./f; % <— USE ELEMENT-WISE DIVISION OPERATOR HERE
m=(1+k*u)./sqrt(k-k*k*power(u,2)); % <— USE ELEMENT-WISE DIVISION OPERATOR HERE
n=(1+1*u)./sqrt(1/k-power(u,2)); % <— USE ELEMENT-WISE DIVISION OPERATOR HERE
I do not know what result you expect, but this will plot a curve of the sort I believe you want.
2 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!