Contenido principal

setsamples

(To be removed) Set neural network data samples

setsamples will be removed in a future release. For more information, see Transition Legacy Neural Network Code to dlnetwork Workflows.

For advice on updating your code, see Version History.

Syntax

setsamples(x,i,v)

Description

setsamples(x,i,v) takes these arguments,

x

Neural network matrix or cell array data

i

Indices

v

Neural network data to store into x

and returns the original data x with the data v stored in the samples indicated by the indices i.

Examples

This code sets samples 1 and 3 of matrix data:

x = [1 2 3; 4 7 4]
v = [10 11; 12 13];
y = setsamples(x,[1 3],v)

This code sets samples 1 and 3 of cell array data:

x = {[1:3; 4:6] [7:9; 10:12]; [13:15] [16:18]}
v = {[20 21; 22 23] [24 25; 26 27]; [28 29] [30 31]}
y = setsamples(x,[1 3],v)

Version History

Introduced in R2010b

collapse all