Filter löschen
Filter löschen

median no longer support uint8

1 Ansicht (letzte 30 Tage)
Yanai
Yanai am 14 Okt. 2012
In matlab 2012a, why the median function doesn't support any more data types other than single or double?
2010b:
median(uint8([1 2 3]))
ans =
2
2012a:
median(uint8([1 2 3]))
Error using median (line 28)
First input must be single or double.
After all, median is defined for any data type...

Antworten (1)

Image Analyst
Image Analyst am 14 Okt. 2012
The simple fix/workaround is
output = median(single(yourUint8Data));
If that's going to be a problem for you then put in a feature request with the Mathworks.

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by