[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: help using dimensions on min()
From: |
Juan Pablo Carbajal |
Subject: |
Re: help using dimensions on min() |
Date: |
Fri, 28 Jun 2013 14:06:26 +0200 |
On Fri, Jun 28, 2013 at 2:00 PM, Chris Daamen <address@hidden> wrote:
> [min, minSigma] = min(testMatrix,[],1)
> [min, minC] = min(testMatrix,[],2)
The problem is that you are overwriting the name of the function min,
and make it a variable (see your commands above). If you execute
[m1, minSigma] = min(testMatrix,[],1)
[m2, minC] = min(testMatrix,[],2)
Everything works fine. Remember not to overwrite your function names
by variables.