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

circa 12 anni fa | 3

| accettato

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

circa 12 anni fa | 0

| accettato

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

circa 12 anni fa | 0

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

circa 12 anni fa | 0

| accettato

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

circa 12 anni fa | 0

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

circa 12 anni fa | 2

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

circa 12 anni fa | 0

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

circa 12 anni fa | 0

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

circa 12 anni fa | 0

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

circa 12 anni fa | 0

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

circa 12 anni fa | 0

| accettato

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

circa 12 anni fa | 72

| accettato

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

| accettato

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 1

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Risolto


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

oltre 12 anni fa

Carica altro