Answered
How can I read xlsx file in Matlab2014a ?
That error looks to be coming from Excel itself. Try xlsread with the 'basic' switch as described at <http://www.mathworks.com/...

10 years ago | 0

Answered
How I can configure Borland C++ in 2011a
Does the toolbox really require Borland C++? MATLAB has not support that compiler in many years, and I think that nearly a *doz...

10 years ago | 0

Answered
How to open file with xlsread?
This is an error in MATLAB's internal processing of the file. I can tell from the error that you are almost certainly running a...

10 years ago | 0

Answered
Why is it sometimes impossible to save the pathdef in 2014a?
Next time you start MATLAB, navigate to it in the Start Menu (contextual clues tell me you're on Windows) and right-click->"Run ...

10 years ago | 0

Answered
Mex-set Command window 7 64 bit
You are using the R2010a release of MATLAB, which was released just before Visual C++ 2010. There is a patch available at <http...

10 years ago | 0

Answered
error LNK2019: unresolved external symbol in matlab
You likely need to use -L and -l (upper and lower case "L") to indicate to the OpenCV library folder and library name.

10 years ago | 0

Answered
Does any one know, how to convert MATLAB code into C++ code ?
An add-on product, <http://www.mathworks.com/products/matlab-coder/ MATLAB Coder>, can be used to do this auto-magically. Here ...

10 years ago | 0

Answered
to let command window able to display all the ouput
This is not quite what you are looking for, but the <http://www.mathworks.com/help/matlab/ref/diary.html diary> command will cap...

10 years ago | 0

Answered
How do I increase Java Heap Size to greater than 4 GB?
MATLAB does *not* use the Java heap to allocate workspace variables. If you are reading big data into your workspace, increasin...

10 years ago | 0

Answered
How to store some varialbes from a very large loop?
If you initialize 'A' and 'B' as not-a-number (NAN) vectors, you could delete the NANs after the loop using <http://www.mathwork...

10 years ago | 0

| accepted

Answered
blanks are not stored in strsplit
Set 'CollapseDelimiters' to false to get the behavior you want: >> C = strsplit('7,ABC,,22.6',',', 'CollapseDelimiters', fal...

10 years ago | 1

| accepted

Answered
How do I delete rows in a table if they contain a specific string?
Starting with Azzi's answer, here is a version that work with a table. I also swapped out regexp in favor of strfind, simply be...

10 years ago | 2

Answered
Invalid MEX-file The specified module could not be found (R2010a)
You are on the right track. You download the missing dependencies -- great -- but they must also be visible to MATLAB on the pa...

10 years ago | 0

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

Load more