samesize for MATLAB

Version 0.3 (17.3 KB) by Rhys Switzer
Takes any number of cell or double arrays and resizes them all to the same dimensions. Also serves to resize any array.
15 Downloads
Updated Fri, 04 Mar 2022 17:16:51 +0000

MATLAB_samesize

Takes any number of cell or double arrays and resizes them all to the same dimensions. Also serves to resize any array with removal of extra rows/columns and adding of NaN, 0, or empty string rows/columns.

Table of Contents

Overview

Arrays can be truncated to match the smallest dimensions of the arrays, or extended with a filler value to match the largest dimensions of the arrays. For this behavior, the program will find the minimum and maximum number of rows and columns from all the inputted arrays and use those to set the dimensions of all arrays depending on whether "small" or "big" was selected in the options. Default is "big".

Arrays can also be resized to certain inputted dimensions, in which case too large dimesions will be truncated and too small will be filled. The array filler defaults to NaN but can also be set to zero or an empty string. You can now also use the CustomFiller argument to pass in any custom filler character, string, or number to the function. One output array is given for every input array. You can even mix inputs of double arrays and cell arrays and each array will be passed back in the same form it entered. See arguments notes below.

Arguments

  • varargin: Any number of arrays of either class double or cell can be passed in. They can be of any size. One output is created for each input array.
samesize(array1,array2,array3,array4,...)

Name-Value Pair Arguments:

  • RowCol: Manually sets the desired size of the output arrays. Must be submitted as a 1x2 non-zero integer vector indicating [rowsize, columnsize].

  • SmallBig: Sets whether to truncate larger arrays to the size of the smallest dimesions of any array, or extend smaller arrays to the size of the largest. Must be either "small" or "big". Defaults to "big". If the rows and columns have been manually set, this input is ignored.

  • Filler: Sets whether to fill extra rows and columns with NaN, zero, or an empty string (only for cell arrays). Must be "NaN", "nan", "zero", "0", "String", or "string". Defaults to "NaN".

  • CustomFiller: Send a custom filler character, string, integer, float, or double to be used to fill extra rows and columns. Input must be a (1,1) scalar of one of the previous classes. (i.e. you can't pass an array into this, just a single value, character, or word.) This argument is evaluated before (and will overwrite) the Filler argument.

Outputs:

varargout: Ouputs one array for each array in the input. They can be accessed in the order they were entered. You do not necessarily have to take every output that is generated.

Example:

[a,b] = samesize(a,b,c,d)

will return output for a and b but not c and d. However, if you want just c and d, the call must look like

[~,~,c,d] = samesize(a,b,c,d)

Examples

Example function call with minimum arguments:

samesize(a,b) %(where a and b are arrays of class cell or double)

In this case, default behavior will resize a and b to the largest dimensions of the arrays.

With output:

[a,b] = samesize(a,b)

With optional arguments for manual dimensions:

[a,b] = samesize(a,b,"RowCol", [3,4])

With optional argument for shrinking to smallest or expanding to biggest:

[a,b] = samesize(a,b,"SmallBig", "small")

With optional argument for filler type:

[a,b] = samesize(a,b,"Filler","zero")

Notes and Warnings

A note on behavior:

As mentioned above, the default response of the program is to make all arrays the size of the largest dimensions of the arrays given. For example, if you submit a 1x3 array and a 3x1 array, the result will be 3x3 arrays with 2 rows of NaN for the first array and two columns of NaN for the second, as this is the largest combination of rows and columns of the arrays given. Likewise, if you submit a 3x3 array and a 1x3 array, the result will be 3x3 arrays with no changes to the first array and two rows of NaN for the second.

This same behavior applies to the "small" option. (i.e. an input of a 2x3 array and a 3x2 array with "small" selected will output 2x2 arrays with the extra column of the first array and the extra row of the second removed.)

For manually set dimensions, all arrays will have rows/columns added or subtracted as necessary to make them the correct size.

Warning:

I am not a professional developer or programmer. If there are unforseen issues or bugs please let me know, but no promises on the reliability of this function. I've done my best to think of all possible situations but it's likely I missed something. Thanks!

Also, I know matrices and arrays are technically not the same thing and I use the two pretty interchangeably in this documentation. Sorry about that. Don't be mean about it.

View MATLAB_samesize on File Exchange

Cite As

Rhys Switzer (2024). samesize for MATLAB (https://github.com/NotMyMajor/MATLAB_samesize/releases/tag/v0.3), GitHub. Retrieved .

MATLAB Release Compatibility
Created with R2021b
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
0.3

See release notes for this release on GitHub: https://github.com/NotMyMajor/MATLAB_samesize/releases/tag/v0.3

0.2

See release notes for this release on GitHub: https://github.com/NotMyMajor/MATLAB_samesize/releases/tag/v0.2

0.1

To view or report issues in this GitHub add-on, visit the GitHub Repository.
To view or report issues in this GitHub add-on, visit the GitHub Repository.