how to write initial condition v'(0)=0 in matlab
이전 댓글 표시
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
답변 (1개)
Walter Roberson
2019년 12월 31일
dw = diff(w,y);
condition2 = dw(-1) == 0;
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!