You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have read these tutorials about MATLAB. Using load as an example may confuse beginners, and I suggest adding explanations about the functions section:
% call function
[y_1,...,y_N]=myfun(x_1,...,x_M)
% defined function
function [y_1,...,y_N] = myfun(x_1,...,x_M)
% The content of the function
% for example:y_1=x_1+1;
end
The function must be located at the end of the file before Matlab R2024a (or separately in a file).
The text was updated successfully, but these errors were encountered:
I have read these tutorials about MATLAB. Using
load
as an example may confuse beginners, and I suggest adding explanations about the functions section:The function must be located at the end of the file before Matlab R2024a (or separately in a file).
The text was updated successfully, but these errors were encountered: