John D'Errico
Retired
A retired applied mathematician, consultant, sometime mechanical engineer, numerical analyst, woodworker, bridge player. Please DON'T contact me, as too many students then decide I am their personal consultant if I allow it. I won't do consulting by mail.
Statistiques
62 Fichiers
Cody HighlightsRANG
10
of 293 862
RÉPUTATION
21 553
CONTRIBUTIONS
15 Questions
7 661 Réponses
ACCEPTATION DE VOS RÉPONSES
46.67%
VOTES REÇUS
4 670
RANG
4 of 20 052
RÉPUTATION
65 321
CLASSEMENT MOYEN
4.80
CONTRIBUTIONS
62 Fichiers
TÉLÉCHARGEMENTS
990
ALL TIME TÉLÉCHARGEMENTS
588917
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
1 Point fort
NOMBRE MOYEN DE LIKES
8
Feeds
Best computer specifications for fast Matlab numerical simulations/integrations?
Something I've said before, when this same question gets asked... If you will do heavy computations for lengthy periods of time...
environ 6 heures il y a | 0
Patenting a Matlab script
Adding to what @Steven Lord has said, it is not that easy to do. And it is may even be the wrong path to take too. (Even though ...
environ 8 heures il y a | 0
Why is it when I am adding a number to array, the single number overrides array
E=10.3*10^6; %psi Fty=68000; %psi Ftu=76000; %psi fnl=linspace(0,Ftu,250); e0=0.09; epu=e0-(Ftu/E); nt=log(epu/.002)/log(F...
1 jour il y a | 1
How to solve for the maximum or minimum value of a symbolic function
You need to understand that not ALL equations you can write down have an analytical solution. In fact, it is trivial to formulat...
3 jours il y a | 0
why use 0.008856 in Lab color space?
Its been a million years since I looked at those equations. But it seems likely to be almost trivial. They chose a point where t...
4 jours il y a | 2
Get awnsers with infinity using matlab solver
No. I'm sorry, but you are wrong. You think of infinity as a number. It is not. Infinity is greater than any number. And, yes, M...
6 jours il y a | 0
| A accepté
Why does this function appear noisy?
Do you understand how floating point arithmetic works? That you only have a finite number of digits, and that when you subtract ...
6 jours il y a | 0
| A accepté
Contour plot of cubic interpolation with set number of contour levels
Simple enough. You should have looked at the handle returned by plot. Though I guess it helps if you know what to look for. ;-) ...
6 jours il y a | 2
| A accepté
how to create function for below objective function.
Your objective function has three unknown variables in it, so z1, z2, and w. But an optimizer MUST have it as a vector of length...
7 jours il y a | 0
Why does fitlm say my "design matrix is rank deficient to within machine precision" despite my design matrix being full rank?
Funny. I was sure within a second of reading your question what you had done wrong. And I think you will probably say, Oh. Yeah....
7 jours il y a | 0
Find the m of nonlinear equation without initial input m. Please help me, my supervisor ask me to find m without input initial m from right. I know this is nonlinear equation.
Not homework, but barely any effort made. Sigh. This is apparently your job. You need to start learning MATLAB. sigma = [ 137....
8 jours il y a | 0
Global optimization strategy with local interpolation
You want to use a high dimensional local interpolation method, so in 6 dimensions. Since you are using it to find a local optimu...
9 jours il y a | 0
Help explain interpolated surface coloring
Without looking deeply into the method used to interpolate, I can't absolutely know what their code does. However, I do deeply u...
12 jours il y a | 1
| A accepté
Solve more complex problems in matlab
Can you just throw it at solve, and hope solve can figure out what is your question? Probably not. A tool like solve is not that...
14 jours il y a | 0
Solve equation with multiple variables
Let me explain SOME of the the mathematics here. First, you have 4 equations, in 4 unknowns. Typically, that means there is one...
16 jours il y a | 0
If I deactivate my llicense on one computer to try Matlab on my new computer, can I reactivate the old computer Matlab if the new computer Matlab does not work?
Well, yes. You can go back, even though we learned long ago that "You can't go home again", Thomas Wolfe may have fed us a littl...
16 jours il y a | 1
| A accepté
Plotting random number in a line
What is it that you want then? A plot requires TWO axes, TWO variables to be plotted, typically we might plot x versus y. My fi...
17 jours il y a | 0
How can I plot a hyperbola?
Just for kicks, we can do a little algebra. Start with the original form. syms x y eqn = 0.4829 == sqrt((95-x)^2-(0-y)^2)-sqrt...
17 jours il y a | 0
How reduce data from 3917x2 to 1868x2 without change the entire of graph?
Just take every other data point, if you just want to roughly reduce the size. But you say you want a specific length. So then y...
19 jours il y a | 0
| A accepté
I want to start a youtube channel where i develop flight control algorithms. Which matlab license do i need?
You definitely want to contact support, as only they can answer your question. I am not a lawyer. However, it seems if you are ...
21 jours il y a | 1
How to filter out the noisy portion of contourf plot?
One basic rule that always applies to things like this. You DON'T want to smooth contours after you have found them. You can't t...
23 jours il y a | 0
How to plot one curve and change color according to value
As ifs often the case, I am far too late to the party. :) But there are often many ways to solve a problem, so I like to be able...
24 jours il y a | 1
why does this line of code give error- disp("The density of " + element ... + "is" + density). When i press the 'enter ' key after the 3 dots and rerun, it works.
Do this instead: disp("The Density of " + element + " is " + density) What did you write? disp("The Density of " + element .....
25 jours il y a | 0
How to fit power-law to each column of data arranged in a table?
Why should it work? I see these lines: [fitresult, gof] = fit( xData, yData, ft, opts ); % Goodnes of the Fit R^2 result...
25 jours il y a | 1
To RESHAPE number of elements must not change
How do you fix it? Make sure you know what the size of your array is, before doing a reshape. This way when you do that reshape ...
26 jours il y a | 0
hi, find the value of x theoretically?
Do you assume that every expression you can write down has an analytical, neatly written algebraic solution? Surely not. Start ...
28 jours il y a | 1
Is a matrix with a condition number of 1e20 definitely more ill-conditioned than a matrix with a condition number of 1e19?
NO. There is effectively no significant difference between the two. At that point, you are into what are essentially random bit ...
28 jours il y a | 1
| A accepté
How to generate vector with non-linear spacing?
It sounds like you want a deterministic, non-random set of points. You can use the inverse gaiussian CDF to do what you want. a...
29 jours il y a | 2
| A accepté
Ordering multivariate polynomials by increasing higher order terms
The problem is, the symbolic toolbox does not use the term sequence you personally prefer. In fact, you can't control the sequen...
30 jours il y a | 0
I'm doing an project in matlab software and my data set having more than 1 lakh images so can you prefer any best laptop for this processing in i7
I think you do not understand. Moving from an i5 to an i7 will improve things. Multiple cores, lots of memory will be nice, even...
environ un mois il y a | 0