labSend

Send data to another worker

Syntax

labSend(data,rcvWkrIdx)
labSend(data,rcvWkrIdx,tag)

Arguments

data

Data sent to the other workers; any MATLAB® data type.

rcvWkrIdx

labindex of receiving worker or workers.

tag

Nonnegative integer to identify data.

Description

labSend(data,rcvWkrIdx) sends the data to the specified destination. data can be any MATLAB data type. rcvWkrIdx identifies the labindex of the receiving worker, and must be either a scalar or a vector of integers between 1 and numlabs; it cannot be labindex of the current (sending) worker.

labSend(data,rcvWkrIdx,tag) sends the data to the specified destination with the specified tag value. tag can be any integer from 0 to 32767, with a default of 0.

Tips

This function might or might not return before the corresponding labReceive completes in the receiving worker.

Introduced before R2006a

Was this topic helpful?