ChunkMinMax

Version 1.0.0.0 (13 KB) von Jan
Min and Max over chunks of a vector
251 Downloads
Aktualisiert 2 Jan 2015

Lizenz anzeigen

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!

Zitieren als

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

Kompatibilität der MATLAB-Version
Erstellt mit R2011b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Linear Algebra finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.0.0