makeDynFloat()

Returns a dynamic field of floating-point numbers.

Synopsis

dyn_float makeDynFloat([ float x1, float x2 ...]);

Parameters

Parameter Description
x1, x2, ... Individual elements

Return value

In the event of an error, the function returns an empty field.

Description

Returns a dynamic field of floating-point numbers with the elements x1, x2 and so on.

Example

main()
{
  dyn_float d;
  d=makeDynFloat(1.23,4.22);
}

Assignment

Dynamic arrays

Availability

CTRL