Réponse apportée
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...

environ 12 ans il y a | 3

| A accepté

Réponse apportée
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... ...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 12 ans il y a | 0

Réponse apportée
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 ...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 12 ans il y a | 0

Réponse apportée
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...

environ 12 ans il y a | 2

Réponse apportée
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, ...

environ 12 ans il y a | 0

Réponse apportée
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...

environ 12 ans il y a | 0

Réponse apportée
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...

environ 12 ans il y a | 0

Réponse apportée
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...

environ 12 ans il y a | 0

Réponse apportée
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...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 12 ans il y a | 72

| A accepté

Réponse apportée
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>

plus de 12 ans il y a | 0

Réponse apportée
xlsread on Mac in basic mode
What version of MATLAB are you using? The last handful of releases can read .xlsx files, give it a try.

plus de 12 ans il y a | 0

Réponse apportée
How can I use Xcode 5.0.1 with Matlab 2011a_Student?
The R2011a version of MATLAB predates both Mavericks and Xcode 5 by a few years, and MATLAB is looking for Xcode compilers that ...

plus de 12 ans il y a | 0

Réponse apportée
set MicrosoftVisualStudio C++ compiler
Do you have Visual C++ 2010 Professional installed? Note that the Express version of Visual C++ is not supported -- if you have...

plus de 12 ans il y a | 0

Réponse apportée
Hello, I have installed the new OS X Mavericks and now I can't work with Matlab. What can I do? Is there any application that allows me to open the matlab? Or I have to come back to Mac OS X?
You may need to reinstall Java 6. It seems that the OS is not prompting everyone to do this. Try the following, substituting y...

plus de 12 ans il y a | 0

Réponse apportée
unix command in for loop
Your command line being sent to unix() includes the string 'filename2', not the *value* of filename2. Try: command1= ['simp...

plus de 12 ans il y a | 0

Réponse apportée
read in only certain columns of big text file
You can use repmat avoid typing '%*d%*d%*d%*d%*d%d%s' 112 times (also note the use of '*' to skip importing certain columns. Tr...

plus de 12 ans il y a | 0

Réponse apportée
Problem Mavericks OS X
You need to reactive MATLAB. <http://www.mathworks.com/support/solutions/en/data/1-JE1GKQ/> was written for Mountain Lion, bu...

plus de 12 ans il y a | 0

Réponse apportée
WIll R2011a student edition run on OSX Mavericks?
That would not be a supported configuration, but you probably can get it to work. At a minimum, you will need to install both J...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Is Matlab 2012b compatible with new Mac OS X 10.9 Mavericks
The system requirements page have not yet been updated, but we have validated R2013a and R2013b only. That said, I expect R2012...

plus de 12 ans il y a | 0

Réponse apportée
MATLAB running slow on MacBook pro
Your code's performance is suffering from repeated error-checking code in pdist. This is rather hacky and something of an advan...

plus de 12 ans il y a | 1

A résolu


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

plus de 12 ans il y a

A résolu


Sorted highest to lowest?
Return 1 if the input is sorted from highest to lowest, 0 if not. Example: 1:7 -> 0 [7 5 2] -> 1

plus de 12 ans il y a

A résolu


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

plus de 12 ans il y a

A résolu


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

plus de 12 ans il y a

A résolu


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

plus de 12 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

plus de 12 ans il y a

A résolu


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

plus de 12 ans il y a

Charger plus