Open
Description
Like the pydra.compose.python
module, I have in mind that you could do something like
from pydra.compose import matlab
SquareNumber = matlab.define(
"""
function y = squareNumber(x)
% squareNumber - Squares the input number
%
% Syntax:
% y = squareNumber(x)
%
% Input:
% x (double) - A numeric value
%
% Output:
% y (double) - The square of the input x
%
% Example:
% result = squareNumber(3);
%
% See also: sqrt
y = x^2;
end
"""
)
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
v1.1-v1.2