MATLAB函式stairs簡介
函式簡介
在matlab中stairs函式用於繪製階梯狀圖,在圖像處理中的直方圖均衡化技術中有很大的意義。在matlab的命令視窗中輸入doc stairs或者help stairs即可獲得該函式的幫助信息。
調用格式
stairs(Y)
stairs(X,Y)
stairs(...,LineSpec)
stairs(...,' PropertyName',propertyvalue)
stairs(axes_handle,...)
h = stairs(...)
[xb,yb] = stairs(Y,...)
各種調用格式的詳細用法參見matlab的幫助文檔。
相關函式
stem,plot,ezplot,bar
程式示例
示例一
x = linspace(-2*pi,2*pi,40);
stairs(x,sin(x))
這個示例來自matlab的幫助文檔,運行結果如右圖:
示例二
繪製直方圖
下面這個示例簡單的描述了用這個函式繪製直方圖
rng('default');
n = rand(1,10);
stairs(n);