MatlabSampleApp2/appDefinition.json

27 lines
697 B
JSON
Raw Normal View History

// -----------------
// Copyright © 2022 ACK Cyfronet AGH, Poland.
// -----------------
//
// Sample application definition created for demonstration of creating custom applications functionality
// See also https://docs.cyfronet.pl/display/ISDOC/Creating+Custom+Applications
//
2022-03-17 11:20:49 +01:00
{
"scriptLanguage" : "OCTAVE",
"executableScriptName" : "sampleApp.m",
2022-03-17 11:20:49 +01:00
"inputFiles" : [ {
"dataType" : "double_vector",
"multiplicity" : {
"minCount" : 1,
"maxCount" : 1
}
} ],
"inputParameters" : [ {
"type" : "INTEGER",
"name" : "Multiplicator"
2022-03-17 11:20:49 +01:00
} ],
"outputs" : [ {
"dataType" : "double_vector",
"isReturnedValue" : true
2022-03-17 11:20:49 +01:00
} ],
"requiredTools" : [ "octave" ]
2022-03-17 11:20:49 +01:00
}