matlab中怎么根据与平均数的大小关系,给条形图上不同的颜色?
发布网友
发布时间:2022-04-23 20:40
我来回答
共1个回答
热心网友
时间:2023-05-27 08:28
代码实现如下,希望对你有帮助:
clear all;
month=1:12;
y=[640,620,650,630,610,630,640,610,630,700,650,690];
idlarge=find(y>=mean(y));
idsmall=find(y<mean(y));
figure(1)
plot(month(idlarge),y(idlarge),'ro');
hold on
plot(month(idsmall),y(idsmall),'go')