Matlab二维曲线之fplot函数
fplot函数的格式:fplot(f, lims, 选项) 其中f代表一个函数,通常采用函数句柄的形式。lims为x轴的取值范围,用二元向量[xmin, xmax]描述,默认值为[-5, 5]。选项定义与plot函数相同,具体可参见: https://blog.csdn.net/Mrweng1996/article/details/104338453 。 代码示例: clc; clear all; f = @(x)sin(1./x); %构建匿名函数 fplot(f,[0,0.2],'b'); 运行结果: 来源: CSDN 作者: 星尘亦星辰 链接: https://blog.csdn.net/Mrweng1996/article/details/104340345