Feeds
提问
How to connect end points for different series in a line plot?
I have the following code which plots the solution below: clear all clc n = [1 2 3 4 5]; % n = ts/tau f = @(t_star,y,n) 1-...
6 years 前 | 1 个回答 | 0
1
个回答提问
How to plot a linear equation with a final condition
I want to plot the following: V(t) = V0 * (1-t/ts); Where V0 is my initial velocity, my time range is t = [t0 ts] and V(ts)=...
6 years 前 | 1 个回答 | 0
1
个回答提问
How to plot an ODE?
Silly question but how can I plot a simple ODE like the following? My ODE is: dy/dt=1-(t/n)-y where n is an array n=[1 2 3 ...
6 years 前 | 1 个回答 | 0
1
个回答提问
How to solve an ODE with time-dependent parameters in MATLAB?
I have the following ODE with time dependent parameters, where m and n are constants: (1/m)*dtheta/dt + theta = (n/m)*V(t) Wit...
6 years 前 | 0 个回答 | 0
0
个回答提问
Plotting without values, using syms
I need to plot theta(t) vs V(t), but have no values for either. clear all close all syms theta t ts tau V0 theta(t)=dso...
6 years 前 | 0 个回答 | 0
0
个回答提问
How to find steady state using events
My code below shows how the temperature changes over time. Although it does what I need it to, I'd like for the plot to stop onc...
6 years 前 | 1 个回答 | 0
1
个回答提问
Solving for a single unknown and plotting.
I need to plot the following equation where T is temperature and yd is a distance, as T vs y (T-T_s)/(T_inf-T_s) = 1.5*yd/d_x-...
6 years 前 | 1 个回答 | 0
1
个回答提问
Plotting Temperature as a function of y from an ODE
I need to plot T(y) and have the following, where y(4) is a solution taken from the ode solver. How do I call y(4) from my funct...
6 years 前 | 1 个回答 | 0
1
个回答提问
How to use one ode45 to solve another?
I have the following for my first ODE: t0=0; tf=7; y0=[0 0 0.332]'; [t,y]=ode45('ydot',[t0 tf],y0); 'ydot' is shown below:...
6 years 前 | 1 个回答 | 0

