📄 abra1.m
字号:
%Start
clear all
addpath '.\Libary'
load data_conc
load data_conc_big
cold = c;
figure(1);
hold on
plot(t,c,'k-');
%12, 10%, yes
tin = t12;
cin = c12;
[spa1,spb1,spc1] = spline_no_2(cold,tin,cin,0.10,0,[0 1 2]);
te = [0:0.02:2]';
drawspline(spa1,te,'k--');
drawspline(spb1,te,'k--');
drawspline(spc1,te,'k--');
%
tin = t12;
cin = c12;
[spa1,spb1,spc1] = spline_h_2(cold,tin,cin,0.10,0,[0 1 2]);
te = [0:0.02:2]';
drawspline(spa1,te,'k:');
drawspline(spb1,te,'k:');
drawspline(spc1,te,'k:');
axis([0 2 0 1]);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -