代码搜索结果
找到约 2,116 项符合
Y 的代码
ex3_9.m
y=0;
n=100;
for i=1:n
y=y+1/(2*i-1);
end
y
y.dat
6.250000000000000e-002
1.250000000000000e-001
1.875000000000000e-001
2.500000000000000e-001
3.125000000000000e-001
3.750000000000000e-001
4.375000000000000e-001
5.
6-13.m
Y=[1 2 5 3.3 0.9 5.2];
names={'一队' '二队' '三队' '四队' '五队' '六队'};
X=[1 2 3 4 5 6];
subplot(211)
pareto(Y,names)
%x轴的下标标识为names
title '排列图示例一'
subplot(212)
pareto(Y,X)
t
6-5.m
Y = [1 2 3 4 5 6 7;
1 2 3 4 3 2 1;
7 6 5 4 3 2 1];
subplot(3,2,1)
bar3(Y,'detached')
title('Detached')
subplot(3,2,2)
bar3(Y,0.25,'detached')
title('Width = 0.25')
subplot(3,2,3)