
How can I solve y''+yy'=0, y (0)=1, y' (0)=-1 in matlab? - MathWorks
2017年1月22日 · How can I solve y''+yy'=0, y(0)=1,... Learn more about matlab, differential equations, nonlinear differential equations
dsolve - MathWorks
Solve the first-order differential equation dy dt = ay with the initial condition y (0) = 5. Specify the initial condition as the second input to dsolve by using the == operator. Specifying condition …
ode - MathWorks
Equation form, specified as "standard" by default or "fullyimplicit" for implicit ODEs, that is, a system of differential equations of the form f (t, y, y ') = 0. If you specify the Jacobian when the …
is there a way to make the 0 x and y axis bold?
2024年4月6日 · % Given data points x = [-0.1, 0, 0.2, 0.3]; y = [5.3, 2, 3.19, 1]; % Define the range of x values for the function plot x1 = linspace(-0.1, 0.3, 100); % Adjust the range as needed % …
bvp4c - MathWorks
y ′ ′ + y = 0. The equation is defined on the interval [0, π / 2] subject to the boundary conditions. y (0) = 0, y (π / 2) = 2. To solve this equation in MATLAB, you need to write a function that …
Drawing the x-axis at y=0 - MATLAB Answers - MATLAB Central
Hello. At least as the default option, MATLAB draws the x-axis at the bottom-most part of the graph. However, I would like to draw it at y=0 as is a common convention. Is it possible in …
y(0)=0 - MATLAB Answers - MATLAB Central - MathWorks
2011年5月25日 · y(0)=0. Learn more about zero indexing v. one indexing . If you really must index at 0, then you will need to write a custom array class with your own subsref()
Solve a System of Differential Equations - MathWorks
The constants C1 and C2 appear because no conditions are specified. Solve the system with the initial conditions u(0) == 0 and v(0) == 0.
Find x for y=0 using interpolation - MATLAB Answers - MathWorks
2020年6月1日 · Find x for y=0 using interpolation. Learn more about interpolation, find x, y=0, find a value MATLAB Hello there, I was given the task to find the x value where y is 0 using …
How to I find a x value from a given y? - MATLAB Answers
2015年12月2日 · I have plotted a Matlab graph using a long matrix. I am looking to find the code which gives me an x value from the line graph given a y.