Respondida
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...

casi 12 años hace | 3

| aceptada

Respondida
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... ...

casi 12 años hace | 0

| aceptada

Respondida
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...

casi 12 años hace | 0

Respondida
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 ...

casi 12 años hace | 0

| aceptada

Respondida
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...

casi 12 años hace | 0

Respondida
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...

casi 12 años hace | 2

Respondida
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, ...

casi 12 años hace | 0

Respondida
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...

casi 12 años hace | 0

Respondida
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...

alrededor de 12 años hace | 0

Respondida
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...

alrededor de 12 años hace | 0

Respondida
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...

alrededor de 12 años hace | 0

| aceptada

Respondida
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 ...

alrededor de 12 años hace | 72

| aceptada

Respondida
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>

alrededor de 12 años hace | 0

Respondida
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.

más de 12 años hace | 0

Respondida
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 ...

más de 12 años hace | 0

Respondida
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...

más de 12 años hace | 0

Respondida
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...

más de 12 años hace | 0

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

más de 12 años hace | 0

Respondida
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...

más de 12 años hace | 0

Respondida
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...

más de 12 años hace | 0

Respondida
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...

más de 12 años hace | 0

| aceptada

Respondida
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...

más de 12 años hace | 0

Respondida
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...

más de 12 años hace | 1

Resuelto


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...

más de 12 años hace

Resuelto


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

más de 12 años hace

Resuelto


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...

más de 12 años hace

Resuelto


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

más de 12 años hace

Resuelto


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...

más de 12 años hace

Resuelto


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

más de 12 años hace

Resuelto


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...

más de 12 años hace

Cargar más