ones

Syntax

N = ones(sz,arraytype)
N = ones(sz,datatype,arraytype)

N = ones(sz,'like',P)
N = ones(sz,datatype,'like',P)

C = ones(sz,codist)
C = ones(sz,datatype,codist)
C = ones(sz,___,codist,'noCommunication')
C = ones(sz,___,codist,'like',P)

Description

N = ones(sz,arraytype) creates a matrix with underlying class of double, with ones in all elements.

N = ones(sz,datatype,arraytype) creates a matrix with underlying class of datatype, with ones in all elements.

The size and type of array are specified by the argument options according to the following table.

ArgumentValuesDescriptions
sznSpecifies size as an n-by-n matrix.
m,n or [m n]Specifies size as an m-by-n matrix.
m,n,...,k or [m n ... k]Specifies size as an m-by-n-by-...-by-k array.
arraytype'distributed'Specifies distributed array.
'codistributed'Specifies codistributed array, using the default distribution scheme.
'gpuArray'Specifies gpuArray.
datatype'double' (default), 'single', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', or 'uint64'Specifies underlying class of the array, i.e., the data type of its elements.

N = ones(sz,'like',P) creates an array of ones with the same type and underlying class (data type) as array P.

N = ones(sz,datatype,'like',P) creates an array of ones with the specified underlying class (datatype), and the same type as array P.

C = ones(sz,codist) or C = ones(sz,datatype,codist) creates a codistributed array of ones with the specified size and underlying class (the default datatype is 'double'). The codistributor object codist specifies the distribution scheme for creating the codistributed array. For information on constructing codistributor objects, see the reference pages for codistributor1d and codistributor2dbc. To use the default distribution scheme, you can specify a codistributor constructor without arguments. For example:

spmd
    C = ones(8,codistributor1d());
end

C = ones(sz,___,codist,'noCommunication') specifies that no interworker communication is to be performed when constructing a codistributed array, skipping some error checking steps.

C = ones(sz,___,codist,'like',P) creates a codistributed array of ones with the specified size, underlying class, and distribution scheme. If either the class or codistributor argument is omitted, the characteristic is acquired from the codistributed array P.

Examples

Create Distributed Ones Matrix

Create a 1000-by-1000 distributed array of ones with underlying class double:

D = ones(1000,'distributed');

Create Codistributed Ones Matrix

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

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

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

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

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

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

Create gpuArray Ones Matrix

Create a 1000-by-1000 gpuArray of ones with underlying class uint32:

G = ones(1000,'uint32','gpuArray');

See Also

| | | | | |

Was this topic helpful?