已回答
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/...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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 ...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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.

11 years 前 | 0

已回答
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 ...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

| 已接受

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

11 years 前 | 2

| 已接受

已回答
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...

11 years 前 | 2

已回答
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...

11 years 前 | 0

已回答
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 ...

11 years 前 | 0

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

11 years 前 | 1

| 已接受

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

| 已接受

已回答
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:...

11 years 前 | 0

| 已接受

已回答
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 ...

11 years 前 | 0

已回答
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...

11 years 前 | 0

| 已接受

已回答
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>

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

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

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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 ...

11 years 前 | 1

| 已接受

已回答
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...

11 years 前 | 6

| 已接受

已回答
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? ...

11 years 前 | 0

已回答
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...

11 years 前 | 0

加载更多