Skip to main content

Interface fortran::syscgetinputscalardataf

Definition: syscInputScalarDataF.fi (line 34)

Provide an interface to get input scalar data.

Members

Public functions

Function syscgetinputscalardataf

type(syscinputscalardataf) function syscgetinputscalardataf()

Create an input scalar data access type.

Primitive type will default to double-precision (64-bit). Data size will be set to zero. Data pointer will be set to null.

Return type: type(syscinputscalardataf) function

Function syscgetinputscalardataf_r4

type(syscinputscalardataf) function syscgetinputscalardataf_r4(data, dataSize)

Create an input scalar data access type.

Parameters:

  • data: - single-precision (32-bit) array of data.
  • dataSize: - number of elements in the array.

Parameters:

  • datadata
  • dataSizedataSize

Return type: type(syscinputscalardataf) function

Function syscgetinputscalardataf_r8

type(syscinputscalardataf) function syscgetinputscalardataf_r8(data, dataSize)

Create an input scalar data access type.

Parameters:

  • data: - double-precision (64-bit) array of data.
  • dataSize: - number of elements in the array.

Parameters:

  • datadata
  • dataSizedataSize

Return type: type(syscinputscalardataf) function