From: Gangamma on
hi

i want to know how a matlab script is handled by the 32 bit processor(computer).
i.e. may be a process of compilation or .....

i.e. how matlab instructions are converted to processor instructions


thank u
Gangamma Patil
gangvsng(a)gmail.com
From: Steven Lord on

"Gangamma " <gangvsng(a)gmail.com> wrote in message
news:hunt82$et9$1(a)fred.mathworks.com...
> hi
>
> i want to know how a matlab script is handled by the 32 bit
> processor(computer).
> i.e. may be a process of compilation or .....
>
> i.e. how matlab instructions are converted to processor instructions

Why do you want to know this information?

--
Steve Lord
slord(a)mathworks.com
comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
To contact Technical Support use the Contact Us link on
http://www.mathworks.com


From: Walter Roberson on
Gangamma wrote:

> i want to know how a matlab script is handled by the 32 bit
> processor(computer).

Very nearly the same way as for 64 bit processors.

> i.e. may be a process of compilation or .....
>
> i.e. how matlab instructions are converted to processor instructions

They are not converted to processor instructions. Matlab scripts are
preprocessed into an internal threaded binary language that is then
interpreted (not compiled).