how to write initial condition v'(0)=0 in matlab
Afficher commentaires plus anciens
i want to write the condition v'(-1)=0 in matlab but my code given below give error. Someone please help me.
code:condition=diff(v,y==-1,1)=0
Réponses (1)
Walter Roberson
le 31 Déc 2019
dw = diff(w,y);
condition2 = dw(-1) == 0;
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!