Beantwortet
How to tell if running 32- or 64-bit Matlab?
You could use mexext (see <http://www.mathworks.com/support/solutions/en/data/1-2HBX9L/index.html?solution=1-2HBX9L How ...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Event Location with ode45
A few things: # You have |Rposn| and |Phiposn| reversed in the polar plot. # When you fix that, you'll see that |Omega| is way ...

fast 15 Jahre vor | 0

Beantwortet
rgb2hsv conversion
HSV stands for Hue, Saturation, and Value (also known as Brightness). See <http://en.wikipedia.org/wiki/HSL_and_HSV this Wikiped...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Plotting overlapping surfaces...
If I type cplxroot(3) I don't see any color mixing. It uses surf to plot. Maybe you have inadvertently set the transparency...

fast 15 Jahre vor | 0

Beantwortet
Trying to do a quad on the positions in a vector
|quad| is not defined for symbolic variables. Do this instead: syms x RR = [x.^2 x.^3 x]; q = int(RR,0,2) *EDIT*: The reason...

fast 15 Jahre vor | 2

| akzeptiert

Beantwortet
How to select/highlight a cell in the uitable automatically? Thank you.
<http://www.mathworks.com/matlabcentral/newsreader/view_thread/165066 There is no way to select a table cell programmatically>.

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
how do I create an array of linked lists?
See <http://www.mathworks.com/help/techdoc/matlab_oop/f2-86100.html Example - Implementing Linked Lists>. *EDIT*: To make an ar...

fast 15 Jahre vor | 1

Beantwortet
How to restrict the search space to integers to solve a multi objective function
If your problem is linear, you can use <http://www.mathworks.com/matlabcentral/fileexchange/6990-mixed-integer-lp mixed-integer ...

fast 15 Jahre vor | 0

Beantwortet
FCGR
As far as I can tell, the details about genomic signature are irrelevant to this question. You want to write matrices to Excel f...

fast 15 Jahre vor | 0

Beantwortet
Weighted Least Squares fit
You can certainly make visual adjustments to the weights to get a better fit - but what would the fit mean? I am assuming that t...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Middleton’s Impulsive Noise Model
See <http://www.mathworks.com/help/toolbox/stats/br5k9hi-1.html Common Generation Methods> for some approaches to this problem.

fast 15 Jahre vor | 0

Beantwortet
How to put a subclass object in an array of superclass objects?
The answer to Question 1 is yes, although how you do it depends on the version of MATLAB. See <http://www.mathworks.com/matlabce...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
What are the features of MATLAB fig-format?
See <http://undocumentedmatlab.com/blog/fig-files-format/ Yair Altman's article>.

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Levenberg Marquardt algorithm (lsqnonlin)
There doesn't seem to be a way of doing that for |lsqnonlin|. There is an optimization parameter, |RelLineSrchBnd|, that can be ...

fast 15 Jahre vor | 0

Beantwortet
Optimizing this script without using symbolic toolbox
If you run this code syms t px py rx ry r x = px + t*rx; y = py + t*ry; c = expand(x^2+y^2-r^2); c = collect(c,t) ...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Polar Laplacian
If you can provide a function to calculate your potential (?) at any point, you can do much better. First, download <http://www....

fast 15 Jahre vor | 1

Beantwortet
Polar Laplacian
The Laplacian is close to correct except at the boundaries (r=0 and r=1). Try plotting, for example, plot(rr(:,1),V2(:,1),rr(...

fast 15 Jahre vor | 2

Beantwortet
Clearing everything except variables
Another thing to try is pack

fast 15 Jahre vor | 0

Beantwortet
Displaying (in the prompt) latin characters, such as á, é, í, ó, ú, and ñ, using MATLAB R2010b/R2011a for mac
Maybe I have been missing the embarrassingly obvious: disp('Química, Matemáticas, Español.')

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Clearing everything except variables
You could try clear functions import java mex

fast 15 Jahre vor | 0

Beantwortet
Integration and derivation of series of discrete points
The answer depends on whether your points are regularly spaced. Let's suppose they are, at intervals dx. Note that if |u| is a v...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Displaying (in the prompt) latin characters, such as á, é, í, ó, ú, and ñ, using MATLAB R2010b/R2011a for mac
You could try <http://www.mathworks.com/support/solutions/en/data/1-4TMMPH/index.html?solution=1-4TMMPH changing the locale>. *...

fast 15 Jahre vor | 2

Beantwortet
Extract solutions solve error
I tried renaming your vector |B|, but still get the same warning when running in the MATLAB workspace. However, in MuPAD I do ge...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
Extract solutions solve error
You have a variable |B| that starts out as a vector with numerical values and then becomes a variable.

fast 15 Jahre vor | 0

Beantwortet
Coupled Differential Equation
<http://www.mathworks.com/matlabcentral/newsreader/view_thread/22190 Here> is an example where someone is using ode45 to solve a...

fast 15 Jahre vor | 0

| akzeptiert

Beantwortet
GUI - out of Memory problem
See <http://www.mathworks.com/help/techdoc/matlab_prog/brh72ex-49.html Resolving "Out of Memory" Errors>.

fast 15 Jahre vor | 2

Beantwortet
axis mapping
You seem to be asking for x = Kx/Constant; y = Ky/Constant; which will work just as written if |Kx| and |Ky| are any...

fast 15 Jahre vor | 0

Beantwortet
Solving complex algebraic expressions
I'm not sure what you're trying to do in the first part of your question, but you can solve the second part using syms x ...

fast 15 Jahre vor | 0

Beantwortet
Fractal in MATLAB
The key point you are missing is that you need to feed in the coordinates of the endpoints as well as |n|. That will allow you t...

fast 15 Jahre vor | 1

| akzeptiert

Beantwortet
plot a 3-d figure (rhombus inside a cricle)
Suppose your potential function is |z = V(x,y)|. Define |V| so that it can input matrices for |x| and |y|, _e.g.,_ V = @(x,y)...

fast 15 Jahre vor | 0

Mehr laden