ChunkMinMax

Versión 1.0.0.0 (13 KB) por Jan
Min and Max over chunks of a vector
251 descargas
Actualizado 2 ene 2015

Ver licencia

ChunkMinMax - min and max element of sub-vectors
[Mins, Maxs] = ChunkMinMax(X, Start, Stop, Valid)
INPUT:
X: Real double array.
Start, Stop: Vectors of type double.
Valid: If this is the string 'valid', X cannot contain NaNs and the function
runs 10% faster. Optional, default: 'nans'.
OUTPUT:
Mins, Maxs: Minimal and maximal values of the intervals:
Data(Start(i):Stop(i))
NaN is replied for empty intervals.
EXAMPLES:
data = rand(1, 100);
starts = [5 10 15 20]; stops = [9 14 19 24];
[mins, maxs] = ChunkMinMax(data, starts, stops);

The Mex-file is compiled the first time, when this function is called.
You can compile manually also:
mex -O ChunkMinMax.c
See the C-file for further instructions.
Pre-compiled files can be downloaded: http://www.n-simon.de/mex
Run the unit-test uTest_ChunkMinMax after compiling to check validity and speed!

Citar como

Jan (2024). ChunkMinMax (https://www.mathworks.com/matlabcentral/fileexchange/48929-chunkminmax), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2011b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Linear Algebra en Help Center y MATLAB Answers.
Etiquetas Añadir etiquetas

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0