I want help solving differential equations
조회 수: 1 (최근 30일)
이전 댓글 표시
채택된 답변
VBBV
2022년 12월 1일
syms x y(x)
eqn = diff(y(x),x)+sqrt((1-y^2)/(1-x^2))==0
cond = [y(0) == 1;y(1) == 0] % check with some other initial conditions as well
sol = dsolve(eqn,cond)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!