Recent content by madjid222

  1. M

    Using ODE45 to Solve Matrix Differential Equations in MATLAB

    I would be grateful if you could possibly help me
  2. M

    Using ODE45 to Solve Matrix Differential Equations in MATLAB

    Homework Statement If we have differential variable of matrix kind ( with dimention 3*3 ) and non matrix ( with dimention 1) simaltanously and as a couple ,how can we use ode45 ? If we have only matrix kind , we can use m file of ode at first with the command of reshape (3,3) and then change...
  3. M

    MATLAB Solving Matrix Differential Equations with ODE45

    If we have differential variable of matrix kind ( with dimention 3*3 ) and non matrix ( with dimention 1) simaltanously and as a couple ,how can we use ode45 ? If we have only matrix kind , we can use m file of ode at first with the command of reshape (3,3) and then change it to column one.What...
  4. M

    MATLAB Plotting Variables (b,u) in Function "Step"

    Hi Friends I want to plot variables (b,u) that are in function "step" . function main [t,v]=ode45('step',[0 20],0,[]); plot(t,v) function dv=step(t,v) c1=1; if t<10 u=1; else u=-1; end dv=c1*u-2*v; b=dv/2; but these variables are unknown in function "main". thanks.
Back
Top