Réponse apportée
Could one install a 2014a toolbox along with release 2014b?
No, all of MathWorks products are released and tested together. Is there a particular reason you want to do this?

environ 10 ans il y a | 0

| A accepté

Réponse apportée
When will MATLAB be updated for OS X Yosemite?
MATLAB supports Yosemite as-of <http://www.mathworks.com/support/sysreq/roadmap.html R2014b>. Older release may also work, but ...

environ 10 ans il y a | 2

Réponse apportée
to read multiple csv files
How many files are we talking about, and how big is each file? If you have R2014b, you may want to check out the new <http://...

plus de 10 ans il y a | 1

Réponse apportée
Urlread and write to an Excel sheet
<http://www.mathworks.com/help/matlab/ref/websave.html websave>, which is brand new as-of R2014b, might serve you better than ur...

plus de 10 ans il y a | 0

Réponse apportée
Mex with MATLAB R2014A & Xcode6
There is a similar problem (that is, problems with exactly the same OpenCV symbols) reported <http://stackoverflow.com/questions...

plus de 10 ans il y a | 1

Réponse apportée
xlsread 'basic' mode reading some text values as NaN
Like cyclist, I was able to load this file and first bringing it into Excel and saving it in the newer XLSX format (XLS has fall...

plus de 10 ans il y a | 1

Réponse apportée
Using a variable in fopen
You can use <http://www.mathworks.com/help/matlab/ref/fullfile.html fullfile> as a convenient way to create a full path from par...

plus de 10 ans il y a | 1

Réponse apportée
I want to send a picture by email to an email address at "Outlook.com" using MATLAB
You can use <http://www.mathworks.com/help/matlab/ref/sendmail.html sendmail>, though you will need to save the image to a tempo...

plus de 10 ans il y a | 0

Réponse apportée
Reading a .mat file in C++
You're looking for the <http://www.mathworks.com/help/matlab/read-and-write-matlab-mat-files-in-c-c-and-fortran.html MAT-File AP...

plus de 10 ans il y a | 0

Réponse apportée
Specific problem usining the mex-function with a library by 'Thorlabs'
From the documentation to WFS_RevisionQuery you copy/pasted, it returns a character string -- the warning is happening because y...

plus de 10 ans il y a | 0

Réponse apportée
Problems with actxserver function for xlswrite?
<http://www.mathworks.com/help/matlab/ref/xlswrite.html XLSWRITE> is only fully support on Windows; on a Mac, try <http://www.ma...

plus de 10 ans il y a | 0

Réponse apportée
Simulink don't work on iMac
Xcode no longer includes the gcc compiler that MATLAB is looking for. See <http://www.mathworks.com/matlabcentral/answers/940...

plus de 10 ans il y a | 0

Réponse apportée
mex -setup -v FORTRAN, Failure using R2014a with Win7, MSVS2013 sp1 and Intel Fotran Composer 2013 SP1
As you've discovered, your particular combination of Intel Fortran and Visual Studio is not supported in 14a ( <http://www.mathw...

plus de 10 ans il y a | 0

| A accepté

A résolu


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

plus de 10 ans il y a

A résolu


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

plus de 10 ans il y a

A résolu


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

plus de 10 ans il y a

A résolu


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

plus de 10 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

plus de 10 ans il y a

A résolu


Text processing - Help Johnny write a letter home from camp
Johnny overuses the word 'great'. Write a script that will help him with this and future letters. If a sentence contains more ...

plus de 10 ans il y a

Réponse apportée
Bug in xlsread on linux
xlsread is tested against files created by Excel -- it looks like you found a case that is technically valid but not something E...

plus de 10 ans il y a | 1

Réponse apportée
Matlab can‘t be used in osx10.10 system
I work for MathWorks. We are aware that MATLAB fails in start-up on preview releases of OS X 10.10. I don't have a work-around...

plus de 10 ans il y a | 0

Réponse apportée
MatLab not recognising compilers on Ubuntu 12.10
I think the compiler message is a red herring here. Typically, the installer will put a link at /usr/local/bin/matlab; here i...

plus de 10 ans il y a | 0

Réponse apportée
Textscan can't read letters with acents
A .CSV file is an ASCII file without character set encoding information. You might need to experiment with different encodings ...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
First iteration in for loop is slower
MATLAB works a bit harder up front to accelerate performance later. You're most likely seeing this effect. The performance d...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How can i plot function 2^x ??
You've almost got it. Two things to fix: # MATLAB is a case-sensitive language (that upper and lower case matters), so you m...

plus de 10 ans il y a | 4

| A accepté

Réponse apportée
SURFMex in Matlab under Ubuntu
I'm not familiar with SURFMex, but upon a quick examination the C++ code look pretty cross-platform friendly, so you may be able...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Invalid MEX-file, likely missing .dll
Try running Dependency Walker from *inside* MATLAB: >> !\path\to\depends.exe This will give you MATLAB's "view" of your s...

plus de 10 ans il y a | 0

Réponse apportée
How can I repair Icon titles of matlab R2014a?
You'll note that even the month name in your History windows is corrupted, so it is not just the toolbar titles. Check the loca...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
Handle a .csv file and save folder path
Since you are ultimately creating a CSV file, you do this much more directly using the table data type: M = zeros(1000,4); ...

plus de 10 ans il y a | 0

Réponse apportée
Spreadsheet Link and Trading tools for Mac
Sorry, Spreadsheet Link uses <https://www.microsoft.com/com/default.mspx COM>, which is a Windows-only technology: <http://ww...

plus de 10 ans il y a | 1

Charger plus