function area = traparea(a,b,h)
% traparea(a,b,h) Computes the area of a trapezoid given
% the dimensions a, b and h, where a and b
% are the lengths of the parallel sides and
% h is the distance between these sides
% Compute the area, but suppress printing of the result
area = 0.5*(a+b)*h;
這只是一個例子。我想知道如何在單獨的.m文件中聲明值假設a = 5,b = 4,h = 8,並使用.in語句將它調用到原始函數(即traparea)中? 例如 。在1 = 5 像 請幫Matlab函數和輸入
不知道「.in聲明」是什麼。你只需從m文件調用函數:'area = traparea(5,4,8);'。 – TroyHaskin