Finding Statistics of a Matrix Help!!!
Ältere Kommentare anzeigen
Hello, currently I have a 1024x1024 array in matlab that I have loaded in from a .txt file:
a = load('File.txt');
I want to find the mean, standard deviation, and the quartile ranges for this array. So far, I have only come across commands that return the average of each column or row, however I want to get basic statistical information when considering every element in the array. Is there a simple command or function that will just spit all this information out for me in a table? Any help is greatly appreciated.
Akzeptierte Antwort
Weitere Antworten (1)
David Fletcher
am 27 Feb. 2018
0 Stimmen
You could reshape the matrix into a vector, then apply the functions to the vector
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!