assign - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


ComplexNumericRTable.assign

assign a complex double into a ComplexNumericRTable

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

void assign( int index[], ComplexNumeric val ) throws MapleException

Parameters

index

-

the index of the entry to assign

val

-

the ComplexNumeric

Description

• 

The assign function assigns the ComplexNumeric val into the element of the ComplexNumericRTable indexed by index.

• 

The index parameter is an array of integers, one for each dimension of the ComplexNumericRTable. Each integer must be within the bounds determined by lowerBound and upperBound.  The index for dimension i is stored in the array at position i1.

• 

As RTables do not have unique representations, elements of an RTable can be assigned to at any time.

Examples

import com.maplesoft.openmaple.*;

import com.maplesoft.externalcall.MapleException;

class Example

{

    public static void main( String notused[] ) throws MapleException

    {

        String[] mapleArgs = { "java" };

        Engine engine = new Engine( mapleArgs, new EngineCallBacksDefault(), null, null );

        ComplexNumericRTable cnRt = (ComplexNumericRTable)engine.evaluate( "Array( 1..2, 1..2, [[1+I, 2+2*I],[3+3*I, 4+4*I]], datatype=complex(sfloat) ):" );

        int[] index = new int[2];

        index[0] = 1;

        index[1] = 1;

        ComplexNumeric cn = (ComplexNumeric)engine.evaluate( "10+5*I:" );

        cnRt.assign( index, cn );

        index[0] = 1;

        index[1] = 2;

        cn = (ComplexNumeric)engine.evaluate( "20+10*I:" );

        cnRt.assign( index, cn );

        index[0] = 2;

        index[1] = 1;

        cn = (ComplexNumeric)engine.evaluate( "30+15*I:" );

        cnRt.assign( index, cn );

        index[0] = 2;

        index[1] = 2;

        cn = (ComplexNumeric)engine.evaluate( "40+20*I:" );

        cnRt.assign( index, cn );

        System.out.println( cnRt );

    }

}

Executing this code produces the following output.

Array(1..2, 1..2, [[10.+5.*I,20.+10.*I],[30.+15.*I,40.+20.*I]], datatype =

complex(sfloat), storage = rectangular, order = Fortran_order)

See Also

ExternalCalling/Java/MapleException

OpenMaple

OpenMaple/Java/API

OpenMaple/Java/ComplexNumericRTable

OpenMaple/Java/ComplexNumericRTable/select

OpenMaple/Java/RTable

OpenMaple/Java/RTable/lowerBound

OpenMaple/Java/RTable/upperBound