What is the code to call this function?

The question asks for code to call this function below. What is it?
Please explain in detail the call for this function so that even a layman can understand it.
% Function to compute the area of a triangle.
% The area is one half the base width times the height.
function [area] = tri_area(b, h)
tri_area(b,h) = (1/2) * b * h ;
% area = tri_area(b, h); % Sample call.
end

 Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 10 de Jul. de 2020
The function should be written like this and saved as tri_area.m
function [area] = tri_area(b,h)
area=1/2*(b)*(h);
end
Then in MATLAB Command Window, call the function like this
TheArea=tri_area(4,5)

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.

Productos

Versión

R2020a

Etiquetas

Preguntada:

el 10 de Jul. de 2020

Editada:

el 13 de Jul. de 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by