Answered
Deployment of VC2005 S-Function: MSVCP80 missing
I would hope that installing the <http://www.microsoft.com/download/en/details.aspx?id=3387 VC2005 Redistributable> would allow...

14 years ago | 0

| accepted

Answered
Annoying Matlab start-up warnings on Mac: " ... MATLAB_maci64 ... attempting to exclude an item from Time Machine ..."
This message is seen only on Lion, and impacts all versions of MATLAB. There are no known effects other than the noisiness in t...

14 years ago | 2

Answered
Simulink windows appear in X11 context on Mac OS X
X11 refers to the X Window System, which hails mostly from Unix systems and is available on Macs. MATLAB on the Intel Mac began...

14 years ago | 1

Answered
How to Fix Title Bars of Editor/Command Window/Workspace etc?
Maybe you turned them off by accident? MATLAB lets you to do this to give you a bit more "useful" screen estate. Under the Des...

14 years ago | 3

| accepted

Answered
saying a message in matlab
You mean have the computer synthesize speech? * On Windows, this can be done using .NET. There happens to be an example of t...

14 years ago | 1

| accepted

Answered
How to find out %COMPUTERNAME% and %USERNAME% ??
GETENV is a somewhat more "graceful" way to do this: getenv('COMPUTERNAME')

14 years ago | 6

Answered
Mac windows don't are different from Windows windows
I work for MathWorks and look after the Mac platform. This is a limitation in both the Mac and Linux versions of Simulink. Y...

14 years ago | 0

Answered
Is it possible to use Matlab function dicomread in Xcode?
MATLAB is not really intended to be "just" a C/C++ library for other programming environments. The closest you can get is to ei...

14 years ago | 0

Answered
Can we get Battery laptop indicator in simulink??
Using .NET may be easier than win32: NET.addAssembly('System.Windows.Forms') powerStatus = System.Windows.Forms.SystemIn...

14 years ago | 3

Answered
Is Mac OS Lion compatible with R2010a 64-bit?
Lion is supported beginning with R2011a. <http://www.mathworks.com/support/sysreq/roadmap.html>

14 years ago | 2

Answered
How to put the lengths of each string in a cell array of strings into a single vector?
If I understand your question correctly: A = {'Hello', 'World!!!'} B = cellfun(@length, A) cellfun executes a functio...

14 years ago | 4

| accepted

Answered
replacing multiple lines with multiple lines in ascii file
Have you considered regular expressions? the MATLAB function regexprep would probably do the trick: old_str = []; rep_s...

14 years ago | 0

Answered
Error in loadlibrary.m MATLAB R2011a
It sounds like the cluster is attempting to invoke a compiler to support loadlibrary, but no compiler has been set up on the clu...

14 years ago | 2

| accepted

Answered
Errors at startup R2011a
I'm guessing your preferences got messed up somehow. You can experiment with a "clean slate" by using the procedure outlined at...

15 years ago | 0

Answered
“Unable to locate compiler” mex error when using Visual C++ 2010 Express SP1 on 64-bit Windows
This problem impacts MATLAB users with the following combination of software on 64-bit Windows (win64): * Visual C++ 2010 Exp...

15 years ago | 7

| accepted

Question


“Unable to locate compiler” mex error when using Visual C++ 2010 Express SP1 on 64-bit Windows
I had a working combination of Visual C++ 2010 Express and Microsoft Windows SDK 7.1. After installing Service Pack 1 for Visua...

15 years ago | 3 answers | 9

3

answers

Answered
Why am I unable to find any compilers on 64-bit Windows?
Unlike the 32-bit version of MATLAB, which bundles the lcc compiler, the 64-bit version of MATLAB does not include a C compiler....

15 years ago | 1