Main Content
getsignals
Get neural network data signals
Syntax
getsignals(x,ind)
Description
getsignals(x,ind)
returns the signals of neural network data
x
indicated by the indices ind
. The neural network data
may be in matrix or cell array form.
If x
is a matrix, ind
may only be 1, which will
return x
, or []
which will return an empty matrix.
If x
is a cell array, then the result is the rows of
x
with indices specified by ind
.
Examples
This code gets signal 2 from cell array data:
x = {[1:3; 4:6] [7:9; 10:12]; [13:15] [16:18]} y = getsignals(x,2)
Version History
Introduced in R2010b
See Also
nndata
| numsignals
| setsignals
| catsignals
| getelements
| getsamples
| gettimesteps