当前位置:网站首页>Matlab function foundation (directly abandon version)
Matlab function foundation (directly abandon version)
2022-06-26 08:32:00 【Klimson】
Please take the following as nonsense , What kind of rubbish matlab, The online version can only be used for money .
Differential square equation matlab
dsolve、ode A series of functions
Example code for standardization of differential equation :
function dx=odefun(t,x)
dx=zeros(2,1);
dx(1)=x(2);
dx(2)=-t*x(1)+exp(t)*x(2)+3*sin(2*t);
end
%% ode45 solve
tspan=[3.9 4];% Solving interval
y0=[8 2];% initial value
[t,x]=ode45('odefun',tspan,y0);
%% drawing
plot(t,x(:,1),'-o',t,x(:,2),'-x')
legend('y','y''')
title('y''''=-t*y+exp(t)*y''+3*sin(2*t)')
xlabel('t')
ylabel('y')
边栏推荐
- (4) Independent key
- Microcontroller from entry to advanced
- Discrete device ~ diode triode
- [postgraduate entrance examination: planning group] clarify the relationship among memory, main memory, CPU, etc
- FFmpeg音视频播放器实现
- MySQL insert Chinese error
- Addition of attention function in yolov5
- VS2005 compiles libcurl to normaliz Solution of Lib missing
- 多台三菱PLC如何实现无线以太网高速通讯?
- Delete dictionary from list
猜你喜欢

opencv学习笔记二

Installation of jupyter

多台三菱PLC如何实现无线以太网高速通讯?
GHUnit: Unit Testing Objective-C for the iPhone

(3) Dynamic digital tube

2020-10-17

1GHz active probe DIY

STM32 project design: temperature, humidity and air quality alarm, sharing source code and PCB

Recognize the interruption of 80s51
![[postgraduate entrance examination] group planning exercises: memory](/img/ac/5c63568399f68910a888ac91e0400c.png)
[postgraduate entrance examination] group planning exercises: memory
随机推荐
golang json unsupported value: NaN 处理
Text to SQL model ----irnet
Oracle 19C download installation steps
The best time to buy and sell stocks to get the maximum return
How to Use Instruments in Xcode
Relationship extraction --r-bert
Recovering the system with Clonezilla USB disk
Necessary protection ring for weak current detection
Zlmediakit push pull flow test
h5 localStorage
I Summary Preface
opencv学习笔记三
Late 2021 plan
Win10 mysql-8.0.23-winx64 solution for forgetting MySQL password (detailed steps)
Swift code implements method calls
Oracle 19C local listener configuration error - no listener
Relationship extraction -- casrel
"System error 5 occurred when win10 started mysql. Access denied"
SOC的多核启动流程详解
[postgraduate entrance examination: planning group] clarify the relationship among memory, main memory, CPU, etc