Risposto
How can I stop a user defined function from returning the output twice?
You don't have semicolons at the end of some lines (so output of those lines will be displayed). Maybe it is running once, but ...

circa 9 anni fa | 2

| accettato

Risposto
C++ to matlab(m-file) without mex
You can use <http://www.mathworks.com/help/matlab/ref/fprintf.html fprintf> in MATLAB, which is closer in usage to C than C++: ...

circa 9 anni fa | 1

Risposto
== operator says two identical arrays aren't the same
Floating point numbers are not infinitely precise, and you probably have differences too small to be noticed when displaying onl...

circa 9 anni fa | 1

| accettato

Risposto
Merging multiples csv files in Matlab-R2014b
Assuming the files are all in the same folder and you have 'cd'ed to there, trying something like: files = dir('*.csv'); % ...

circa 9 anni fa | 3

| accettato

Risposto
[Noob] Blank data -> NaN
I'm not familiar with portopt, so this will be general advise: You can de-NaN a vector of numbers with logical index: >> ...

circa 9 anni fa | 0

| accettato

Risposto
Matlab 2014b mex switch C compiler from XCode Clang to GCC on Mac
Sorry, MEX only supports Xcode/Clang on Mac. See <http://www.mathworks.com/support/compilers/R2014b/index.html?sec=maci64>

circa 9 anni fa | 0

| accettato

Risposto
How to display line number in command window when error occurs for R2014b?
Command+Enter (equivalent to the "Run Section" button) will run just a section of code, not the entire file. In this situation,...

circa 9 anni fa | 1

Risposto
Problems with 2014b running EXTREMELY slowly on Mac OS?
This is all on the same computer, right? I would expect R2012b and R2014b to have comparable performance on your Mac. Try some...

circa 9 anni fa | 0

Risposto
error LNK 2019Cannot open include file: 'opencv/cv.h': No such file or directory
MEX is unaware of whatever settings you may have in a Visual Studio project. You will need to add the include folder to your ME...

circa 9 anni fa | 0

| accettato

Risposto
Change the menu language to English
This is not elegant, but you can change the system's "Preferred Language" to English, start MATLAB, and then immediately set the...

oltre 9 anni fa | 0

Risposto
imshow() not working on mac
My guess is that Image Processing Toolbox is not installed. imshow used to be part of the Image Processing Toolbox, and was m...

oltre 9 anni fa | 0

Risposto
Set Visual C++ 2010 as default compiler for MATLAB 2014a
Can you check that you can create *64-bit* executables from within Visual Studio 2010 (and if not, install the necessary compone...

oltre 9 anni fa | 0

| accettato

Risposto
what is the difference between these two types of rgb matlab code ?
In the first case, R is not a 3-D image, but a 2-D image, which MATLAB will display as grayscale. You created R as 2-D when you...

oltre 9 anni fa | 0

| accettato

Risposto
Unable to read MAT-file E:\my_file.mat: not a binary MAT-file.
This sounds like something that should work. Try performing a checksum on the file on both computers and see what they report. ...

oltre 9 anni fa | 0

Risposto
Why does MATLAB think I have 5 output args when I have 6?
Do you mean that you are calling nargout from within the function, maybe inside the debugger? If so, nargout will be the number...

oltre 9 anni fa | 0

Risposto
Installing LibSVM on Mac OSX 10.9.2 (mex file error)
What version of MATLAB, and what version of Xcode are you running? My guess is that you're running a new version of Xcode, a ...

oltre 9 anni fa | 1

Risposto
How to solve Maximum recursion limit of 500 reached problem
A recursion depth of 500 is "absurd", almost surely indicating a problem in the code and not some limitation in MATLAB. The rec...

oltre 9 anni fa | 0

| accettato

Risposto
get an Excel file write data, but 'save as ...' (not overwrite the parent file)
The first argument to <http://www.mathworks.com/help/matlab/ref/xlswrite.html xlswrite> is the filename, so use that to create n...

oltre 9 anni fa | 1

Risposto
i couldnt able to install matlab2014. please guide me to intall matlab.
Check your Mac's security settings, and allow apps downloaded from anywhere.

oltre 9 anni fa | 0

Risposto
MATLAB - 'Getting Status for Files' - Yosemite problem
Try turning off source code control integration as described <http://www.mathworks.nl/matlabcentral/answers/159574-matlab-2014b-...

oltre 9 anni fa | 2

| accettato

Risposto
How to get xlsread, xlswrite, actxserver to find, read and write to/from Excel 2010?
Could you be running a so-called "click to run" version of Office ( <http://support.microsoft.com/kb/982431> )? That version di...

oltre 9 anni fa | 2

| accettato

Risposto
Pre-determining the number of lines in a text file
If we can make two assumptions: * ASCII #10 is a reliable end-of-line marker * The entire file will fit into memory (that is...

oltre 9 anni fa | 1

Risposto
A small problem on my homework assignment has something to do with case expression.
I like Image Analyst's suggestion because a multiple-choice UI eliminate the need to check for bad input, but your professor mig...

oltre 9 anni fa | 0

Risposto
Convert Excel String time to number
This is not pretty, but you can split the string on the ':' and compute the number of seconds since midnight. The code below us...

oltre 9 anni fa | 0

Risposto
Trying to connect XCode 5 and Matlab 2014a and get an AWT-EventQueue-0 error
Presumably you are trying to debug a MEX-File. See the documentation topic <http://www.mathworks.com/help/matlab/matlab_externa...

oltre 9 anni fa | 0

Risposto
In MATLAB 2014b, how can I undock the editor into one window but dock all my scripts into that single window? (not dock them into the command window)
In the dark-blue frame of the editor window, # On the right-hand side, click the down-arrow icon (boxed in red in the screen ...

oltre 9 anni fa | 3

Risposto
No supported compiler found Matlab R2014a visual studio 2012 professional
I don't see a problem here ("MEX configured to use ..."). MEX is simply telling you that 64-bit array handling is changing.

oltre 9 anni fa | 0

Risposto
Patch for Matlab 2014a Student on OS X 10.10?
Whitney, yes, you do need a patch for R2014a to work with Yosemite. To the best of my knowledge, it is compatible with both pro...

oltre 9 anni fa | 0

| accettato

Risposto
How to get a vector from an excel sheet
Conversion from matrix to vector is: >> x = x(:);

oltre 9 anni fa | 0

Risposto
Question of automatically creating MATLAB folder
Try: >> userpath /my/custom/location Then restart MATLAB.

oltre 9 anni fa | 20

| accettato

Carica altro