Is it possible to have more than 1 output in created function??
in
Programming Questions
•
11 months ago
I would like to have 2 outputs for a function,like for example:
the 2outputs are saved in V and D
[V,D] = float(a,b,c,d);
float(float a, float b, float c, float d){
.....
.....
.....
return E,F;
}
and the result would be E and F are stored in V and D respectively....
Is it possible??
even when returned in a form of 2D array like float[][]??
the 2outputs are saved in V and D
[V,D] = float(a,b,c,d);
float(float a, float b, float c, float d){
.....
.....
.....
return E,F;
}
and the result would be E and F are stored in V and D respectively....
Is it possible??
even when returned in a form of 2D array like float[][]??
1