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

fast 12 Jahre vor | 3

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 2

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

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

etwa 12 Jahre vor | 0

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

etwa 12 Jahre vor | 0

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

etwa 12 Jahre vor | 0

| akzeptiert

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

etwa 12 Jahre vor | 72

| akzeptiert

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

etwa 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 0

| akzeptiert

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

mehr als 12 Jahre vor | 0

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

mehr als 12 Jahre vor | 1

Gelöst


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

mehr als 12 Jahre vor

Gelöst


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

mehr als 12 Jahre vor

Gelöst


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

mehr als 12 Jahre vor

Gelöst


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

mehr als 12 Jahre vor

Gelöst


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

mehr als 12 Jahre vor

Gelöst


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

mehr als 12 Jahre vor

Gelöst


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

mehr als 12 Jahre vor

Mehr laden