matlab函数的具体定义法~!?


matlab函数的具体定义法~!?

文章插图
举个例子,希望有所帮助 。代码 function main() clc; clear all; close all; R = 1 : 5; test_fun(R) function test_fun(R) P = poly(R); y0 = zeros(1, 5); x = 0.8 : 0.1 : 5.2; y = polyval(P, x); figure; plot(x, y, R, y0, 'o'); xlim([0 6]); ylim([-10 10]); x = 0 : 0.1 : 6; y = polyval(P, x); figure; plot(x, y, R, y0, 'o'); xlim([0 6]); ylim([-10 10]); 一般形式为:function 返回值=函数名(输入参数)
【matlab函数的具体定义法~!?】

    推荐阅读