Tell me more ×
Mathematics Stack Exchange is a question and answer site for people studying math at any level and professionals in related fields. It's 100% free, no registration required.

I solved the system of ode with infinite boundary conditions using bvp solver. i got the graphs of each dependent variables$(f, f', \theta)$ versus their independent variable$(\eta)$. but i need the graphs of one dependent variable(f'',Nu) versus some other parameter involved in the ode $(Nb,Nr,Nt)$. But i couldnt know how to write code for this. please answer if any one know this. thanks.

share|improve this question
This is not a mathematics question but a MATLAB programming question. It should be migrated to stack overflow.SE or similar site. – Dilip Sarwate Jun 17 '12 at 17:41

closed as off topic by Dilip Sarwate, LVK, Chris Eagle, Rahul Narain, t.b. Aug 28 '12 at 17:04

Questions on Mathematics Stack Exchange are expected to relate to math within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

If x,y,t are vectors of the same length and you can plot $x(t),y(t)$ with the function

plot(t,x)

or

plot(t,y)

then you can also plot $y(x)$ or $x(y)$ by

plot(x,y)

or

plot(y,x)
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.