What is difference between min and min(min) ?

Hello,
[m,n]=size(x);
Min=min(min(x));
vs
Min = min(x);

3 Kommentare

Arathi Sankar P
Arathi Sankar P am 21 Jan. 2021
minimum of a matrix is the matrix containing minimum of each column. Where minimum of minimum gives smallest element in the matrix.
[m,n]= size(A);
Min = min(min(A));
this is not working for me
John D'Errico
John D'Errico am 10 Mai 2023
@sam - Never just say something like "this is not working for me", and nothing more.
Since it DOES work, you need to say what it did do. If you got an error, then report the ENTIRE error message, so everything in red. If it did something strange, then say what it DID do, not just that it did not work.
Would you call up your doctor and ask (over the phone) for a diagnosis of your ailment, but not give a hint of what the ailment might be to the poor doctor? Would you ask your local auto mechanic to tell you what is wrong with your car, without seeeing the car, and without even telling the mechanic anything more than that your car won't start?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 13 Apr. 2016
Bearbeitet: Azzi Abdelmalek am 13 Apr. 2016

2 Stimmen

Just try it you will understand
A=[1 2 3;4 5 6]
m=min(A) % give the minimimum of each column
n=min(min(A)) % is the minimum of the result m
%or instead of using min(min(A)) you can use
B=A(:);
out=min(B)

Kategorien

Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 13 Apr. 2016

Kommentiert:

am 10 Mai 2023

Community Treasure Hunt

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

Start Hunting!

Translated by