Updated comment

This commit is contained in:
parent 8eb68951be
commit c77c8af5aa
1 changed files with 3 additions and 2 deletions

View File

@ -7,14 +7,15 @@
%%
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:
% - inVector - vector of double number values
%
% 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);
print('-dpng', 'vectorPlot.png');