1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
.TH pvm_sci2f77 1 "May 1998" "Scilab // Group" "Scilab function"
.so ../sci.an
.SH NAME
pvm_sci2f77 - Convert complex scalar into F77
.SH CALLING SEQUENCE
.nf
[res] = pvm_sci2f77(var)
.fi
.SH PARAMETERS
.TP 5
var : local scilab variable. On return, the variable will be
overwritten with the result of conversion operation.
.TP 5
res
: if the parameter var is not a variable, the result of the conversion
is returned in res.
.SH DESCRIPTION
\fVpvm_sci2f77\fR converts all the complex of a scilab variable
(array, list...) in the F77 representation. MAy be useful if an
application is sendind data to a non scilab application (direcvtly to
a C or F77 program for example).
Note that the parameter is passed by adress. It means that if the
parameter is a variable, this variable will be overwritten with the
result of conversion operation. On the other case, if the parameter
is not a variable, the result will be returned in res.
For example:
.nf
-->a = [1+%i, 2+2*%i,3+3*%i]
a =
! 1. + i 2. + 2.i 3. + 3.i !
-->pvm_sci2f77(a)
-->a
a =
! 1. + 2.i 1. + 3.i 2. + 3.i !
-->b = pvm_sci2f77([1+%i, 2+2*%i,3+3*%i])
b =
! 1. + 2.i 1. + 3.i 2. + 3.i !
.fi
.SH SEE ALSO
pvm_f772sci
|