Updated comment

This commit is contained in:
parent 8eb68951be
commit c77c8af5aa

View File

@ -7,14 +7,15 @@
%% %%
function sampleApp(inVector) function sampleApp(inVector)
%% sampleApp function that multiplies a vector of number values by a multiplicator and plots the result %% sampleApp function that plots the input vector
% %
% Inputs: % Inputs:
% - inVector - vector of double number values % - inVector - vector of double number values
% %
% Outputs: % Outputs:
% - PNG image file 'vectorPlot.png' containing a plot of the inVector multiplied by multiplicator % - PNG image file 'vectorPlot.png' containing a plot of the inVector
% %
plot(inVector); plot(inVector);
print('-dpng', 'vectorPlot.png'); print('-dpng', 'vectorPlot.png');