?? ex5_1.m
字號(hào):
% EX5_1.M Solve Dy=1/(t-1) using Symbolic Math Toolbox
% for Example 5.1 and 5.2
y=dsolve('Dy=1/(t-1)')
y1=dsolve('Dy=1/(t-1)','y(2)=-10') % Initial values t=2
y2=dsolve('Dy=1/(t-1)','y(2)=0')
y3=dsolve('Dy=1/(t-1)','y(4)=8') % Initial value t=4
%
% Try help dsolve to understand the command
% Also, add a few fprintf commands to explain the output
%
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -