Main Content

true

Create codistributed array of logical 1 (true)

    Description

    example

    X = true(n) creates an n-by-n codistributed matrix of logical ones.

    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 = true(sz1,...,szN) creates an sz1-by-...-by-szN codistributed array of logical ones where sz1,...,szN indicates the size of each dimension.

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

    X = true(___,codist) uses the codistributor object codist to create a codistributed array of logical ones. You can use this syntax with any of the input arguments in the previous syntaxes.

    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 = true(___,codist,"noCommunication") creates a codistributed array of logical ones 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 = true(___,"like",p) uses the array p to return a codistributed array of logical ones. You can specify datatype or "like", but not both.

    The returned array X has the same sparsity as p.

    Examples

    collapse all

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

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

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

    Create a 1000-by-1000 codistributed matrix of trues, distributed by its columns.

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

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

    Input Arguments

    collapse all

    Size of the square matrix, specified as a codistributed integer.

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

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

    Size of each dimension, specified as separate arguments of codistributed integer values.

    • 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, the function ignores trailing dimensions with a size of 1.

    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, true ignores trailing dimensions with a size of 1. For example, true(codistributed([3 1 1 1])) produces a 3-by-1 codistributed vector of logical ones.

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

    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.

    Tips

    • true(codistributed(n)) is much faster and more memory efficient than logical(ones(codistributed(n))).

    Version History

    Introduced in R2006b