Main Content

eye

Create codistributed identity matrix

    Description

    example

    X = eye(n) creates an n-by-n codistributed identity matrix.

    When you create the codistributed array in a communicating job or spmd block, the function creates an array on each worker. If you create a codistributed array outside of a communicating job or spmd block, the array is stored only on the worker or client that creates the codistributed array.

    By default, the codistributed array has the underlying type double.

    X = eye(n,m) creates an n-by-m codistributed identity matrix with ones on the main diagonal and zeros elsewhere.

    X = eye(sz) creates a codistributed identity matrix where the size vector sz defines the size of X. For example, eye(codistributed([2 3])) creates a 2-by-3 codistributed array.

    X = eye(___,datatype) creates a codistributed identity matrix with the underlying type datatype. For example, eye(codistributed(1),"int8") creates a codistributed 8-bit scalar integer 1. You can use this syntax with any of the input arguments in the previous syntaxes.

    X = eye(___,codist) uses the codistributor object codist to create a codistributed array of zeros.

    Specify the distribution of the array values across the memory of workers using the codistributor object codist. For more information about creating codistributors, see codistributor1d and codistributor2dbc.

    X = eye(___,codist,"noCommunication") creates a codistributed identity matrix without using communication between workers. You can specify codist or codist,"noCommunication", but not both.

    When you create very large arrays or your communicating job or spmd block uses many workers, worker-worker communication can slow down array creation. Use this syntax to improve the performance of your code by removing the time required for worker-worker communication.

    Tip

    When you use this syntax, some error checking steps are skipped. Use this syntax to improve the performance of your code after you prototype your code without specifying "noCommunication".

    X = eye(___,"like",p) uses the array p to create a codistributed identity matrix. You can specify datatype or "like", but not both.

    The returned array X has the same underlying type, sparsity, and complexity (real or complex) as p.

    Examples

    collapse all

    Create a 1000-by-1000 codistributed identity matrix, distributed by its second dimension (columns).

    spmd(4)
        C = eye(1000,'codistributed');
    end

    With four workers, each worker contains a 1000-by-250 local piece of C.

    Create a 1000-by-1000 codistributed uint16 identity matrix , distributed by its columns.

    spmd(4)
        codist = codistributor('1d',2,100*[1:numlabs]);
        C = eye(1000,1000,'uint16',codist);
    end

    Each worker contains a 100-by-labindex local piece of C.

    Input Arguments

    collapse all

    Size of the first dimension of the identity matrix, specified as a codistributed integer.

    • If n is the only integer input argument, then X is a square n-by-n identity matrix.

    • If n is 0, then X is an empty matrix.

    • If n is negative, then the function treats it as 0.

    Size of the second dimension of the identity matrix, specified as a codistributed integer.

    • If m is 0, then X is an empty matrix.

    • If m is negative, then the function treats it as 0.

    Size of each dimension, specified as a codistributed integer row vector. Each element of this vector indicates the size of the corresponding dimension:

    • If the size of any dimension is 0, then X is an empty array.

    • If the size of any dimension is negative, then the function treats it as 0.

    • Beyond the second dimension, eye ignores trailing dimensions with a size of 1. For example, eye(codistributed([3 1 1 1])) produces a 3-by-1 codistributed identity matrix.

    Example: sz = codistributed([2 3 4]) creates a 2-by-3-by-4 codistributed array.

    Underlying data type of the returned array, specified as one of these options:

    • "double"

    • "single"

    • "logical"

    • "int8"

    • "uint8"

    • "int16"

    • "uint16"

    • "int32"

    • "uint32"

    • "int64"

    • "uint64"

    Codistributor, specified as a codistributor1d or codistributor2dbc object. For information on creating codistributors, see the reference pages for codistributor1d and codistributor2dbc. To use the default distribution scheme, you can specify a codistributor constructor without arguments.

    Prototype of array to create, specified as a codistributed array.

    Version History

    Introduced in R2006b