From: Michael Coughlin on
Hi,

I have been having trouble convincing Matlab that it can find ismembc2.
>> ismembc2
??? Undefined function or variable 'ismembc2'.

[mcoughlin(a)ldas-pcdev1 ~]$ ls /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.*
/ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.cpp
/ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexa64
/ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexa64.csf
/ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexglx
/ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexglx.csf

So it seems to be there. I have tried 'addpath' but to no avail. Does someone know what might be wrong? Do I have to do something special with these types of files?

Michael
From: Walter Roberson on
Michael Coughlin wrote:
> Hi,
>
> I have been having trouble convincing Matlab that it can find ismembc2.
>>> ismembc2
> ??? Undefined function or variable 'ismembc2'.
>
> [mcoughlin(a)ldas-pcdev1 ~]$ ls
> /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.*
> /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.cpp
> /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexa64
> /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexa64.csf
> /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexglx
> /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexglx.csf
>
> So it seems to be there. I have tried 'addpath' but to no avail. Does
> someone know what might be wrong? Do I have to do something special with
> these types of files?


Ummm, is it possible you are executing on a 32 bit machine? I don't see
a ismembc2.mexa32 there.
From: Michael Coughlin on
I am running on a 64-bit machine, so that should not be a problem. Is there a way to check if that is what Matlab is confused about?

Walter Roberson <roberson(a)hushmail.com> wrote in message <hkk44h$t35$1(a)canopus.cc.umanitoba.ca>...
> Michael Coughlin wrote:
> > Hi,
> >
> > I have been having trouble convincing Matlab that it can find ismembc2.
> >>> ismembc2
> > ??? Undefined function or variable 'ismembc2'.
> >
> > [mcoughlin(a)ldas-pcdev1 ~]$ ls
> > /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.*
> > /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.cpp
> > /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexa64
> > /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexa64.csf
> > /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexglx
> > /ldcg/matlab_r2007a/toolbox/matlab/ops/ismembc2.mexglx.csf
> >
> > So it seems to be there. I have tried 'addpath' but to no avail. Does
> > someone know what might be wrong? Do I have to do something special with
> > these types of files?
>
>
> Ummm, is it possible you are executing on a 32 bit machine? I don't see
> a ismembc2.mexa32 there.
From: us on
"Michael Coughlin" <coughlim(a)carleton.edu> wrote in message <hkk8vf$d4b$1(a)fred.mathworks.com>...
> I am running on a 64-bit machine, so that should not be a problem. Is there a way to check if that is what Matlab is confused about?

a hint:

help computer;

us
From: Michael Coughlin on
Thank you for the hint.

>> computer

ans =

GLNXA64

So that should be fine, right?

"us " <us(a)neurol.unizh.ch> wrote in message <hkkaul$b5n$1(a)fred.mathworks.com>...
> "Michael Coughlin" <coughlim(a)carleton.edu> wrote in message <hkk8vf$d4b$1(a)fred.mathworks.com>...
> > I am running on a 64-bit machine, so that should not be a problem. Is there a way to check if that is what Matlab is confused about?
>
> a hint:
>
> help computer;
>
> us