Jump to content

Reshape Array function: Difference between revisions

From LabVIEW Wiki
Add new page (stub)
 
Add content
Line 1: Line 1:
{{stub}}
[[File:Reshape Array - Terminals.png|thumb|Reshape Array function]]
[[File:Reshape Array - Terminals.png|thumb|Reshape Array function]]


{{LabVIEW Palette Object Information|palette=Functions Palette/Programming/Array{{!}}Array palette|type=function}}
{{LabVIEW Palette Object Information|palette=Functions Palette/Programming/Array{{!}}Array palette|type=function}}
The '''Reshape Array''' function takes an array of any size and dimensionality and turns it into an array of different dimensionality using the original elements.


== Usage ==
== Usage ==


== Best practice ==
Connect an array of any size and dimensionality to '''n-dim array''' and extend the bottom border of the function until the desired number of output dimensions is reached. For each dimension specify the maximum number of elements. The resulting array contains exactly the desired number of elements.
 
{|
| style="vertical-align:top;" | [[File:Reshape Array - 2d to 1d.png]]
| style="vertical-align:top;" | [[File:Reshape Array - 1d to 2d.png]]
|}
 
If the source contains ''more'' elements than desired, the array is cut off.
 
[[File:Reshape Array - Too many elements.png]]
 
If the source array contains ''less'' elements than desired, the array is padded with zeros.


== History ==
[[File:Reshape Array - Too few elements.png]]


== See also ==
== Best practice ==


== External links ==
* If the input and output dimensionality is the same, use [[Array Subset function|Array Subset]] instead.
* To swap the dimensionality of 2D arrays (<code>[i:j]</code> to <code>[j:i]</code>), use [[Transpose 2D Array function|Transpose 2D Array]] instead.


[[Category:Array Palette]]
[[Category:Array Palette]]

Revision as of 21:12, 15 November 2019

Reshape Array function
Object information
Owning palette(s) Array palette
Type Function
Requires Basic Development Environment

The Reshape Array function takes an array of any size and dimensionality and turns it into an array of different dimensionality using the original elements.

Usage

Connect an array of any size and dimensionality to n-dim array and extend the bottom border of the function until the desired number of output dimensions is reached. For each dimension specify the maximum number of elements. The resulting array contains exactly the desired number of elements.

If the source contains more elements than desired, the array is cut off.

If the source array contains less elements than desired, the array is padded with zeros.

Best practice

  • If the input and output dimensionality is the same, use Array Subset instead.
  • To swap the dimensionality of 2D arrays ([i:j] to [j:i]), use Transpose 2D Array instead.