From 8eb68951be914b867b6754500feda11d5bd832ec Mon Sep 17 00:00:00 2001 From: "TCS portal test user (insilicolab@gmail.com)" Date: Tue, 18 Oct 2022 13:59:30 +0200 Subject: [PATCH] Added application code --- sampleApp.m | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/sampleApp.m b/sampleApp.m index 03b9bab..919b612 100644 --- a/sampleApp.m +++ b/sampleApp.m @@ -1,8 +1,21 @@ -%% This function was automatically generated. When modifying its signature, take care to apply -%% modifications also to the descriptor files in the repository. +%% ----------------- +%% Copyright © 2022 ACK Cyfronet AGH, Poland. +%% ----------------- +%% +%% Sample function created for demonstration of creating custom applications functionality +%% See also https://docs.cyfronet.pl/display/ISDOC/Creating+Custom+Applications +%% function sampleApp(inVector) -%% MATLABSAMPLEAPP1 -%% TODO: Put your application code here +%% sampleApp function that multiplies a vector of number values by a multiplicator and plots the result +% +% Inputs: +% - inVector - vector of double number values +% +% Outputs: +% - PNG image file 'vectorPlot.png' containing a plot of the inVector multiplied by multiplicator +% + plot(inVector); + print('-dpng', 'vectorPlot.png'); end