MatlabSampleApp1/appDefinition.json

24 lines
690 B
JSON
Raw Normal View History

2022-10-18 13:56:26 +02:00
// -----------------
// 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-10-18 13:21:38 +02:00
{
"scriptLanguage" : "OCTAVE",
"executableScriptName" : "sampleApp.m",
"inputFiles" : [ {
"dataType" : "double_vector",
2022-10-19 11:43:20 +02:00
"multiplicity" : "1"
2022-10-18 13:21:38 +02:00
} ],
"inputParameters" : [ ],
"outputs" : [ {
"dataType" : "image_data",
"fileFormat" : "PNG",
"fileName" : "vectorPlot.png",
"isReturnedValue" : false
} ],
"requiredTools" : [ "octave" ],
"requiredComputationResources" : { }
}