MATLAB有哪些画图的函数?

如题所述

第1个回答  2018-03-10

基本的绘图函数有:plot: x轴和y轴均为线性刻度(Linear scale)


loglog: x轴和y轴均为对数刻度(Logarithmic scale)


semilogx: x轴为对数刻度,y轴为线性刻度


semilogy: x轴为线性刻度,y轴为对数刻度


其他各种二维绘图函数


bar 长条图


errorbar 图形加上误差范围


fplot 较精确的函数图形

stairs 阶梯图


stem 针状图



fill 实心图


feather 羽毛图


compass 罗盘图


quiver 向量场图


mesh 绘制三维图像

本回答被网友采纳
第2个回答  2018-01-02
基本的绘图函数有:plot: x轴和y轴均为线性刻度(Linear scale)
loglog: x轴和y轴均为对数刻度(Logarithmic scale)
semilogx: x轴为对数刻度,y轴为线性刻度
semilogy: x轴为线性刻度,y轴为对数刻度
其他各种二维绘图函数
bar 长条图
errorbar 图形加上误差范围
fplot 较精确的函数图形
polar 极座标图
hist 累计图
rose 极座标累计图
stairs 阶梯图
stem 针状图
fill 实心图
feather 羽毛图
compass 罗盘图
quiver 向量场图
mesh 绘制三维图像
surf(x,y,Z) </SPAN>
相似回答