Answered
Question about mex -setup
Beginning with R2014a, is it no longer necessary to run 'mex -setup', and MEX is using the only compiler that is found, the 7.1 ...

10 years ago | 0

Answered
Memory usage in sparse matrix
Try just: >> sparse(80000,80000) to avoid the temporary allocation of a 80000^2 non-sparse zeros array.

10 years ago | 1

| accepted

Answered
Matlab compiler installer requires internet connection
In the Application Compiler tool, you should have a "Packaging Option" that allows you create a complete bundle. See <http://ww...

10 years ago | 0

Answered
here i attached the error while creating .mat file...pls give suggestion
You are trying to save the file to a MATLAB installation folder. This is a Bad Idea, but possible if you run MATLAB with Adminis...

10 years ago | 0

| accepted

Answered
How do I get Matlab to work with windows SDK 8
The Windows 8 SDK does *not* include a compiler, which is why MATLAB continues to support version 7.1 of the SDK. From <http:...

10 years ago | 0

| accepted

Answered
how to avoid index out of bounds error
Your inner-most 'while' loop continues to increment 'i' while 'h_proj(i)' is nonzero. This will fall out of bounds if the last ...

10 years ago | 0

Answered
Sharing large .mat files by placing them in /dev/shm
MATLAB would load the contents of the MAT-File into a new location as part of your workspace. The binary representation of a MA...

10 years ago | 0

| accepted

Answered
How to build and debug Matlab MEX file with XCode 5.1 IDE on OS X?
Also see <http://www.mathworks.com/help/matlab/matlab_external/debugging-on-mac-platforms.html>

10 years ago | 0

| accepted

Answered
How to setup gfortran on Mac OSX 10.9 and MatLab R2014a?
Try: >> mex -v <filename.f> This will give you verbose output that should help pinpoint why MEX can't find gfortan. Copy...

10 years ago | 0

| accepted

Answered
C compiler for Windows 7 64 bit
Do like is says -- visit <http://www.mathworks.com/support/compilers/R2012b/win64.html> and install a compiler that works for yo...

10 years ago | 0

Answered
How can I use Microsoft Visual C++ 2012 to create MEX files with MATLAB 7.90 (R2009b)
The 7.1 SDK was not yet available/supported as-of R2009b (that SDK was released in 2010). You will need to use one of the suppo...

10 years ago | 0

Answered
how can i use matlab with Xcode 5.0.2
<http://www.mathworks.com/matlabcentral/answers/103904>

10 years ago | 0

Answered
how to use 2008b on os x 10.9.2
I think X11 might only be the beginning of your problems. R2008b supported 10.4 and 10.5, and required Java version 1.5. I'm p...

10 years ago | 0

Answered
Running MATLAB from Mac Automator
Two possibilities to try: * Add -desktop to the command line invocation of MATLAB * Add & to the end of the command line to ...

10 years ago | 1

| accepted

Answered
How can I delete a row from a cell aray, with empty cell as first column
I think this is what you are after: The line of code below will call isempty on each row in the first column, and then trim A t...

10 years ago | 6

| accepted

Answered
Error during Mex compilation
This loos like am ordinary syntax error in your C header file. What does gm_sme_code_gen_types.h looks like around line 49? ...

10 years ago | 0

Answered
Problems with RTL-SDR and Simulink
Install <http://www.dependencywalker.com Depenency Walker> and then open the .mexe64 file with it. There many be a dependency t...

10 years ago | 0

Answered
How can I find add-ons button for R2012b?
I believe that button was added in a later release of MATLAB. If you can't upgrade to a newer release, try: >> targetinstal...

10 years ago | 3

| accepted

Answered
Matlab R2014a and Visual Studio Professional 2013
If you *just* installed Visual Studio, try rebooting to make sure the environment variables get set up. If that don't help... ...

10 years ago | 0

| accepted

Answered
Hi there, I want to use deploytool but I am not changing the compiler select ?
The original error message is telling you that you are on a 64-bit version of MATLAB, but your installation of Visual C++ 2008 d...

10 years ago | 0

Answered
install libsvm error Windows8
R2007b was released a few years before Visual C++ 2010, so that version of MATLAB has no knowledge of it. Support compilers at ...

10 years ago | 0

| accepted

Answered
intrgrating matlab and .net
You can call .NET from within MATLAB using the built-in <http://www.mathworks.com/help/matlab/using-net-libraries-in-matlab.html...

10 years ago | 0

Answered
Can't locate microsoft visual c++ 2008 even i have installed it?
From the screenshot, you don't have Visual C++ 2008 installed, you have its *redistributable* only. That is only a very small p...

10 years ago | 2

Answered
Cannot return value of a variable
'x' is only assigned if certain conditions are met, so you will get an error with some combinations of 'a' and 'p'. However, ...

10 years ago | 0

Answered
Extract value from .txt. Weird lay out.
Try replacing your second loop with something along the lines of: T = strjoin(T', '\n'); interest = textscan(T, '%*11c %6f...

10 years ago | 0

Answered
mex cannot find gfortran compiler (Mac OS)
The PATH as set by the Terminal application may be different than as set by launch an application from the Dock. Try this in MA...

10 years ago | 0

Answered
Saving variable in txt file
Let us say that that final.txt already have the lines you want to begin with. Use the |-append| option to save: save('final...

10 years ago | 0

Answered
Parsing everything between quotation using regular expression
I think you want: raw='"square format" tag_id=' regexp(raw, '"(.*?)"', 'tokens') That gives you a cell array of all tex...

10 years ago | 0

| accepted

Answered
How to make script and command window adjacent
Look in the upper-right corner for the down arrow (circled in red in the screenshot below). Then choose "Dock Editor". KEN ...

10 years ago | 69

| accepted

Answered
When I open Matlab 2009b I get a license manager error -9. How do I get matlab to work on this new computer?
You will need to re-activate MATLAB on the new computer: <http://www.mathworks.com/matlabcentral/answers/94781>

10 years ago | 0

Load more