Make a code for these equation and make it right to run it
1 次查看(过去 30 天)
显示 更早的评论
Make a code for these equation:(1+x^2)y"-4y'+6y=0 and y"-xy'-x^2y=0 and y"-xy=0 make a code for these 3 equation
2 个评论
回答(1 个)
Srivardhan
2023-6-2
Hi George,
As per my understanding, you would like to write the given Second order differential equations in MATLAB.
MATLAB represents the variables and functions in differential equations using symbolic scalar variables and functions. Assuming x, y(x) as symbolic scalar variable and function, also we represent y’(x) and y” (x) using the inbuilt “diff” function.
Here is the code you can check:
syms x y(x)
eqn = (1+x^2)*diff(y,x,2) - 4*diff(y,x) + 6*y == 0;
eqn1 = diff(y,x,2) - x*diff(y,x) - x^2*y == 0;
eqn2 = diff(y,x,2) - x*y == 0;
eqn, eqn1, eqn2 represents the mentioned 2nd order differential equations.
For further reference, please check out the links to learn more about writing the MATLAB code of differential equations.
- https://www.mathworks.com/help/symbolic/syms.html
- https://www.mathworks.com/help/symbolic/differentiation.html
I hope this resolves the issue you were facing.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!