ex5_2.m

来自「Advanced Engineering Mathematics using M」· M 代码 · 共 24 行

M
24
字号
% EX5_2.M Plot solution to ydot=1/(t-1)% for 3 initial values. y=ln|t-1|+c.c=[-10 0 6.9014];         % Define constant values t=[1.005:.1:10];          % Define t to avoid t=1m=length(t);n=length(c);y=zeros(m,n);             for I=1:3 y(:,I) =log(abs(t-1)') + c(I);endclf                       % Clear any figuresplot(t,y(:,1),t,y(:,2),t,y(:,3))xlabel('t')ylabel('y(t)')title('Solution of dy/dt=1/(t-1)')gridaxis([0,10,-20,20])       % Plot limits gtext('(t0,y0)=(2,-10)')  % Annotate with mouse clicks  gtext('(t0,y0)=(2,0)')gtext('(t0,y0)=(4,8)')%% Note: Using gtext command, the figure will be annotated where you click %   with the mouse (cursor). %	

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?