k-Wave Toolbox Previous   Next

resize

Resize a matrix using interp2 (2D) or interp3 (3D).

Syntax

mat_rs = resize(mat, new_size)
mat_rs = resize(mat, new_size, interp_mode)

Inputs

mat

matrix to resize

new_size

desired matrix size in pixels given by [Nz, Nx] in 2D and [Nz, Nx, Ny] in 3D. Here Nz is the number of pixels in the row direction, Nx is the number of pixels in the column direction, and Ny is the number of pixels in the depth direction.

Optional Inputs

interp

interpolation mode used by interp2 and interp3 (default = '*linear')

Outputs

mat_rs

resized matrix

Examples

See Also

interp2, interp3


© 2009, 2010 Bradley Treeby and Ben Cox.