cat
Contents: Description, Arguments, Usage, Examples, Related Functions Supported Under Version: >1.69 Current Davinci Version: 2.27 64-bit Safe: Yes
Description Concatenate (append) two objects together
Arguments and Return Values Arguments: two objects of identical format and organization and whose dimensions along the specified axes are equal. Return Value: an object equaling the two input objects combined.
Usage Syntax: cat(object1, object2, axis = x/y/z) The cat() function duplicates object1 and appends a copy of object2, along the specified axis. The two objects must match in format and organization, and must have the same dimension along the two unspecified axis.
Examples dv> a 1x5x1 array of float, bsq format [20 bytes] 44.8491 40.7119 17.7138 94.1409 2.46356 dv> b 2x5x1 array of float, bsq format [40 bytes] 83.1721 93.1926 20.7155 80.9114 26.4541 70.0264 48.0099 16.4950 12.4010 87.5333 dv> c=cat(a,b,axis=x) 3x5x1 array of float, bsq format [60 bytes] 44.8491 83.1721 93.1926 40.7119 20.7155 80.9114 17.7138 26.4541 70.0264 94.1409 48.0099 16.4950 2.46356 12.4010 87.5333 dv> d=cat(a,b,axis=y) Axis must match |
DavinciWiki Mini-Nav Bar Contents
Contact Developers
All other topics
Recent Core Changes Modified On: 11-18-2016 |