From: us on
"Michael Coughlin" <coughlim(a)carleton.edu> wrote in message <hkkc61$o5s$1(a)fred.mathworks.com>...
> Thank you for the hint.
>
> >> computer
>
> ans =
>
> GLNXA64
>
> So that should be fine, right?

well, it seems(?)...

- you'r on a 64bit linux system
- you've a 64bit windows ML version (...mex...)

us
From: Michael Coughlin on
Hmm that is weird. So ignoring that for a second, is there a way to check what settings I have "preset" for Matlab somewhere? Because when I open up another account on the same computer and open Matlab, it finds ismembc2 just fine and so it is probably just a silly setting somewhere causing the problem.

Thank you!

"us " <us(a)neurol.unizh.ch> wrote in message <hkkcqn$3ha$1(a)fred.mathworks.com>...
> "Michael Coughlin" <coughlim(a)carleton.edu> wrote in message <hkkc61$o5s$1(a)fred.mathworks.com>...
> > Thank you for the hint.
> >
> > >> computer
> >
> > ans =
> >
> > GLNXA64
> >
> > So that should be fine, right?
>
> well, it seems(?)...
>
> - you'r on a 64bit linux system
> - you've a 64bit windows ML version (...mex...)
>
> us
From: us on
"Michael Coughlin" <coughlim(a)carleton.edu> wrote in message <hkke9h$ng$1(a)fred.mathworks.com>...
> Hmm that is weird. So ignoring that for a second, is there a way to check what settings I have "preset" for Matlab somewhere? Because when I open up another account on the same computer and open Matlab, it finds ismembc2 just fine and so it is probably just a silly setting somewhere causing the problem.
>
> Thank you!

well, just a few hints:

help ispc; % <- and siblings
prefdir
matlabroot
cd(prefdir);
dir;
cd(matlabroot);
cd bin;
dir; % <- will show WIN32 on a 32bit wintel sys, for instance...

us