⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 conc.m

📁 Incorporating Prior Knowledge in Cubic Spline Approximation - Application to the Identification of R
💻 M
字号:
% CONC

global b1 b2 b3 b4
b1 = 1;
b2 = 0.5;
b3 = 10;
b4 = 5;
[t,c] = ode45('freact1',[0:0.02:2],[1 0 0]);
plot(t,c(:,1),'r',t,c(:,2),'g',t,c(:,3),'b');

%12-points
vec=round(linspace(1,1001,12));
t12 = t(vec);
c12 = c(vec,:);

%31-points
vec=round(linspace(1,1001,31));
t31 = t(vec);
c31 = c(vec,:);

save data_conc t12 c12 t31 c31
save data_conc_big t c

⌨️ 快捷键说明

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