Dataset reshape: Difference between revisions
Jump to navigation
Jump to search
imported>Scott No edit summary |
imported>Scott No edit summary |
||
Line 21: | Line 21: | ||
This function generally follows the I/O of the standard reshape command | This function generally follows the I/O of the standard reshape command | ||
but some options may not be available here. | but some options may not be available here. | ||
Revision as of 19:18, 17 November 2008
Purpose
Change size of a DataSet object.
Synopsis
- rx = reshape(x,a,b,c,...)
- rx = reshape(x,[a b c])
Description
reshape(x,m,n) returns the M-by-N matrix whose elements are taken columnwise from x. An error results if x does not have M*N elements.
reshape(x,m,n,p,...) or reshape(x,[m n p ...]) returns an N-D array with the same elements as X but reshaped to have the size M-by-N-by-P-by-... Note that M*N*P*... must be the same as PROD(SIZE(X)).
This function generally follows the I/O of the standard reshape command
but some options may not be available here.