代码搜索结果
找到约 45,533 项符合
T 的代码
t.c
/*
* T.c
*
* Expected SUCCESSes for all tests: FIX [+ FIX ...]
* (List number of lines containing the
* string "SUCCE
liti21.m
t=1/30:1/30:14/30;
s=[11.86 15.67 20.60 26.69 33.71 41.93 51.13 61.49 72.90 85.44 99.08 113.77 129.54 146.48];
[p,S]=polyfit(t,s,2)
liti22.m
t=1/30:1/30:14/30;
s=[11.86 15.67 20.60 26.69 33.71 41.93 51.13 61.49 72.90 85.44 99.08 113.77 129.54 146.48];
T=[ones(14,1) t' (t.^2)'];
[b,bint,r,rint,stats]=regress(s',T);
b,stats
liti23.m
t=1/30:1/30:14/30;
s=[11.86 15.67 20.60 26.69 33.71 41.93 51.13 61.49 72.90 85.44 99.08 113.77 129.54 146.48];
[p,S]=polyfit(t,s,2)
Y=polyconf(p,t,S)
plot(t,s,'k+',t,Y,'r')
liti8.m
t=0:pi/50:10*pi;
plot3(sin(t),cos(t),t)
rotate3d
ff5.m
[T,Y]=ode45('rigid',[0 12],[0 1 1]);
plot(T,Y(:,1),'-',T,Y(:,2),'*',T,Y(:,3),'+')
ff4.m
[T,Y]=ode15s('vdp1000',[0 3000],[2 0]);
plot(T,Y(:,1),'-')
shark.m
[t,x]=ode45('shier',[0 15],[25 2]);
plot(t,x(:,1),'-',t,x(:,2),'*')
figure(2)
plot(x(:,1),x(:,2))
txy.m
t=78:87;
x=[23.8,27.6,31.6,32.4,33.7,34.9,43.2,52.8,63.8,73.4];
y=[41.4,51.8,61.7,67.9,68.7,77.5,95.9,137.4,155.0,175.0];
save data t x y
dianzu2.m
t=[20.5 32.5 51 73 95.7];
r=[765 826 873 942 1032];
R=[t' ones(5,1)];
aa=R\r';
a=aa(1)
b=aa(2)
y=polyval(aa,t);
plot(t,r,'k+',t,y,'r')