photo

John D'Errico


Retired

Last seen: Today 2006 年からアクティブ

Followers: 9   Following: 0

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.

統計

All
  • Most Accepted 2023
  • Editor's pick for Answers
  • Quiz Master
  • Promoter
  • Top Downloads 2023
  • Top Downloads 2022
  • Top Downloads 2021
  • Top Downloads 2020
  • Revival Level 4
  • Top Downloads 2019
  • Personal Best Downloads Level 5
  • Editor's Pick

バッジを表示

Feeds

回答済み
Running a large array
Memory is cheap. Get more memory. I'm sorry, but if you want to work with big data, you will often need sufficient capabilities...

約6時間 前 | 0

回答済み
Why did I get two different results in nonlinear programing problems
You have a nonlinear problem. You need to understand that given any set of starting values, an optimizer will sometimes find a s...

約6時間 前 | 0

回答済み
The equation of the curve at the intersection of the two 3D surface, One is a cylinder.
It is not always trivial to find that curve as some explicit function. Here, yes, you can do so easily enough. syms x y z r = ...

3日 前 | 1

| 採用済み

回答済み
creating loop that stops at correct formula for the given input.
You have a fundamental problem here, that you fail to understand. You CANNOT solve for more than 6 parameters, given only 6 data...

3日 前 | 0

| 採用済み

回答済み
Help solving linear ordinary differential equation that involves matrix
I would postulate that in fact, it DOES give the correct solution, at least to the problem you posed, but that it is not in the ...

6日 前 | 0

回答済み
How to solve this problem combining sequences and reasoning using code?
I would probably think first, and only then write code. I gather the global sequence will always be 1:(4*m+2), so the first 4*m+...

7日 前 | 0

回答済み
Find closest value in array
To be honest, the easiest way is to use knnsearch. It works well in one dimension, as you have here, and it should be quite effi...

12日 前 | 1

回答済み
Calculations with distributions of variables only
Um, yes. And, no. Firstly, very likely there will be no "named" distribution for even such a simple expression. And depending ...

13日 前 | 0

回答済み
How to fastly calculate this matrix operation
First, use better variables. I is a terrible name to use , especially capital I, since it is so easily confused with the number ...

13日 前 | 0

| 採用済み

回答済み
Find the turing pattern for following equation
I won't do your homework, since this is highly likely to be homework with no effort made on your part, just from the way you ask...

15日 前 | 0

| 採用済み

回答済み
In Pskmod Code: Reshaping the output signal using the transpose operator .' , Introduce a sign change.
No. You have it wrong. Completely backwards, in fact. The .' operator does NOT cause a sign flip. That is called a conjugation. ...

15日 前 | 0

回答済み
Why am I getting gaps in my data when I attempt to interpolate my curve?
As is always the case, look at what you did. Think about it. If necessary, think again. xy = readtable('Sample Test.txt') plot...

17日 前 | 2

| 採用済み

回答済み
How to call a own function in other mfile?
Did you save it on your search path? (Do you know what your search path is?) Spend some time reading the help for tools like add...

20日 前 | 0

回答済み
Show Only certain variables in the workspace
The point of what @Stephen23 and I are trying to tell you is that you are asking the wrong question. You want someone to teach y...

21日 前 | 0

回答済み
Solve a system of two variable inequalities with symbolic toolbox
fimplicit does not plot inequalities. Sorry. If you read the help, it never says anything about inequalities. Simplest is to ju...

21日 前 | 0

| 採用済み

回答済み
How to fix "Error using indexing" while calculating differential equations?
The code you show will work perfectly in MATLAB, in literally any recent release of MATLAB. R2023 is entirely recent. However, ...

23日 前 | 0

回答済み
Writing a code to determine the gradient change in a profile
Your problem lies in this line: change_p = (abs(data.variable.gradpressure(i,j+1))-abs(data.variable.gradpressure(i,j)))/abs(da...

25日 前 | 0

| 採用済み

回答済み
Could MATLAB please provide rref() without the rational conversion?
Just look at the code. type rref Do you see the very last thing it does is do the conversion? Just write your own version that...

25日 前 | 0

| 採用済み

回答済み
Why does eig return different eigen values depending on whether eigen vector outputs are specified ?
Gosh, the eigenvalue questions are coming fast today. You have an 11x11 matrix. The eigenvalues of that matrix are equivalent to...

25日 前 | 0

回答済み
How to interprete an analytical eigendecomposition for a polynomial matrix with size nxn > 4x4 using the Symbolic Math Toolbox.
Ok, do you understand that you CANNOT compute the roots of a polynomial, if the degree of that polynomial is greater than 4? Wel...

25日 前 | 1

| 採用済み

回答済み
Strict inequalities are not supported (learn why)
It is NOT related to the release number. Sorry. That has nothing to do with it. This has been the case since release 0 of MATLAB...

27日 前 | 0

回答済み
Curve Fitter Polynomial Plots Strangely In Script
CONGRATULATIONS! You win an award for the one millionth person to make this mistake! Your award is a free trip to the fabled vac...

28日 前 | 0

回答済み
Why is indexing a sparse matrix not behaving how I would expect?
This is not a question about sparse matrices. Well, it is, but it is not really. Sparse matrices are exactly the same as any oth...

28日 前 | 0

回答済み
how to write the right code to measure the elapsed time of this method d1 = diag(1./diag(A))
Why do you care? The computations will be almost inifinitessimal, even for a huge matrix. (Do you understand the notation O(n)?)...

29日 前 | 1

回答済み
Alternative to interp2
Perhaps you are calling interp2 multiple times in a loop, when a single call with multiple points will be far faster. This would...

約1ヶ月 前 | 1

回答済み
How can people who are bad at math and have no programming aptitude learn MATLAB? (Long question)
An old question, one that surely would be better placed in a discussion, now that we have them. However, as soon as someone dec...

約1ヶ月 前 | 0

回答済み
Someone that works with symbolic variables?
When k is even slightly large (apparently 4 is large enough) things go to hell. Did I not answer this question before? I know I ...

約1ヶ月 前 | 1

回答済み
using polyval with one of the polynomials of a spline obtained with the unmkpp command, the results do not overlap! Why?
@David Goodmanson and @dpb and @Steven Lord have all said the polynomial segments are intended to be LOCAL with respect to the b...

約1ヶ月 前 | 0

回答済み
Problems with code with symbolic variables.
No. I won't consult by gmail, or whatever. But there is no need. Even for k==2, what do I see? eqn = [3*c1^2 + 3*c3 == 0, 3*c...

約1ヶ月 前 | 0

回答済み
MATLAB Programming Techniques, Extracting Portions of a table
Why do you need it? Well, I don't see the question in the course, and I am not enrolled in the course, so... But what does that...

約1ヶ月 前 | 0

さらに読み込む