forked from tcs-test-user/MatlabSampleApp2
27 lines
694 B
JSON
27 lines
694 B
JSON
// -----------------
|
|
// 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
|
|
//
|
|
{
|
|
"scriptLanguage" : "OCTAVE",
|
|
"executableScriptName" : "sampleApp.m",
|
|
"inputFiles" : [ {
|
|
"dataType" : "double_vector",
|
|
"multiplicity" : {
|
|
"minCount" : 1,
|
|
"maxCount" : 1
|
|
}
|
|
} ],
|
|
"inputParameters" : [ {
|
|
"type" : "INTEGER",
|
|
"name" : "Multiplier"
|
|
} ],
|
|
"outputs" : [ {
|
|
"dataType" : "double_vector",
|
|
"isReturnedValue" : true
|
|
} ],
|
|
"requiredTools" : [ "octave" ]
|
|
} |