I am wanting to write a for loop for 2 differential equations.
For 0<x<5 dadb = (2*x) For 5<x<10 dadb = (3*x)
How would I code this?
Cheers
No products are associated with this question.
dx = 0.01; x = (0:dx:10-dx)';
idx = (x < 5);
C = ... D = ...
z = ( C + x.^2 / 2 ) .* idx + ( D + x.^3 / 3 ) .* ( 1 - idx ) ;
You will need to specify values for the constant C and D based on the initial value of z and the continuity condition at x = 5.
3 Comments
Direct link to this comment:
http://mathworks.com/matlabcentral/answers/56018#comment_115947
Differential equations? So dadb means "the derivative of a with respect to b" ? But the value you give is in terms of a third variable, x ??
Direct link to this comment:
http://mathworks.com/matlabcentral/answers/56018#comment_116102
Sorry i will re-write that...
Direct link to this comment:
http://mathworks.com/matlabcentral/answers/56018#comment_116104
Are you sure that you mean a FOR-loop? Look at "doc for" and "help for", if this really matches your needs.