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

12 years ago | 3

| accepted

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

12 years ago | 0

| accepted

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

12 years ago | 0

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

12 years ago | 0

| accepted

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

12 years ago | 0

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

12 years ago | 2

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

| accepted

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

12 years ago | 72

| accepted

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

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

12 years ago | 0

| accepted

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

12 years ago | 0

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

12 years ago | 1

Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

Load more