在Matlab中创建函数的公式
时间: 2024-05-20 08:17:58 浏览: 62
Matlab函数的创建笔记
很简单,只需要使用以下代码:
function [outputArg1,outputArg2] = functionName(inputArg1,inputArg2)
%FUNCTIONNAME Summary of this function goes here
% Detailed explanation goes here
outputArg1 = inputArg1;
outputArg2 = inputArg2;
end
其中functionName为函数名,inputArg1,inputArg2为输入参数,outputArg1,outputArg2为输出参数。函数体内的注释可以描述函数的作用和实现方式。
阅读全文