forked from tcs-test-user/MatlabSampleApp1
27 lines
737 B
JSON
27 lines
737 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" : [ ],
|
|
"outputs" : [ {
|
|
"dataType" : "image_data",
|
|
"fileFormat" : "PNG",
|
|
"fileName" : "vectorPlot.png",
|
|
"isReturnedValue" : false
|
|
} ],
|
|
"requiredTools" : [ "octave" ],
|
|
"requiredComputationResources" : { }
|
|
} |