+ 2
Please who has heard about MATLAB??
I might need some help...
3 Respostas
+ 2
Please post the actual question directly.
+ 2
Okay.
How do you construct a function using MATLAB
+ 2
As in
https://www.mathworks.com/help/matlab/ref/function.html
function retValue = funcName(param)
retValue = param
end
This is a dummy function which returns the argument passed to it. You can call this function on the command line as:
funcName(39)