Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Simple for loop question.

1 visualización (últimos 30 días)
Jake
Jake el 7 de Dic. de 2012
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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
  3 comentarios
Jake
Jake el 9 de Dic. de 2012
Editada: Walter Roberson el 9 de Dic. de 2012
Sorry i will re-write that...
For 0<x<5 dz/dx = (2*x)
For 5<x<10 dz/dx = (3*x)
Jan
Jan el 9 de Dic. de 2012
Are you sure that you mean a FOR-loop? Look at "doc for" and "help for", if this really matches your needs.

Respuestas (1)

Rick Rosson
Rick Rosson el 9 de Dic. de 2012
Editada: Rick Rosson el 9 de Dic. de 2012
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.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by