Add 'appDefinition.json'

This commit is contained in:
Michal_Lelonek 2021-11-05 13:28:35 +01:00
parent a520684903
commit 1db8375b36
1 changed files with 19 additions and 0 deletions

19
appDefinition.json Normal file
View File

@ -0,0 +1,19 @@
{
"scriptLanguage" : "MATLAB",
"executableScriptName" : "my_app.m",
"functionName" : "my_app",
"inputFiles" : [ {
"dataType" : "time_series",
"multiplicity" : {
"minCount" : 1,
"maxCount" : 1
}
} ],
"inputParameters" : [ "INTEGER", "DOUBLE" ],
"outputs" : [ {
"dataType" : "gdf",
"fileName" : "out.mat"
} ],
"requiredTools" : [ "matlab" ],
"requiredComputationResources" : { }
}