当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


MATLAB barh()用法及代码示例


此函数创建一个水平条形图,x 中的值用于标记每个条形,y 中的值用于确定条形的水平长度。

用法

barh(y) // It creates a horizontal bar graph with one bar for each element in y. If y is an m-by-n matrix, then barh creates m groups of n bars.
barh(x,y)// It draws the bars along the vertical axis at the locations specified by x.

示例

World population by continents
cont=char ('Asia','Europe','Africa',...'N.America','S.America');
pop=[333.2;696;694;437;307];
barh(pop)
for i=1:5,
	gtext(cont(i,:));
end
xlabel('Population in millions');
Title (World population (1992)','fontsize', 18)

输出:

MATLAB barh()



相关用法


注:本文由纯净天空筛选整理自 MATLAB barh()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。