photo

John D'Errico


Last seen: Today 2006년부터 활동

Followers: 41   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
MATLAB Answers

15 질문
7,926 답변

File Exchange

62 파일

Cody

5 문제
140 답안

Discussions

14 하이라이트

순위
9
of 301,748

평판
22,293

참여
15 질문
7,926 답변

답변 채택
46.67%

획득한 표
4,872

순위
4 of 21,405

평판
66,845

평균 평점
4.80

참여
62 파일

다운로드 수
374

ALL TIME 다운로드 수
603569

순위
1,869
of 176,353

참여
5 문제
140 답안

점수
1,566

배지 수
7

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
14 하이라이트

평균 좋아요 수
3

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

배지 보기

Feeds

답변 있음
free trail doubt issue
After it ends in 30 days, it will just end. You will have a choice then of continuing your use of MATLAB by paying the normal fe...

대략 20시간 전 | 0

답변 있음
Volume and Surface Area of a Compound Geometric Object
First, alpha shapes tend to be poor at representing volumes with sharp internal corners, like those between the intersection of ...

4일 전 | 1

답변 있음
Call parameters by their variable name in Simulink rather than having to index the value.
If you can pass in a vector, then you can pass in a structure. Just assign fields to the structure. parameters.khch = 2; There...

5일 전 | 0

답변 있음
looking for creator of specific code
The codes I did find were a bit more sophisticated in general, and I did not expect to find anything. HOWEVER, when I looked on ...

5일 전 | 1

답변 있음
¿Cómo podría solucionar matrices por el comando [L,U]? no sé nada respecto al tema
I think your confusion stems from a misunderstanding. LU is fine, even with rank deficient matrices. As long as you use the MATL...

9일 전 | 0

답변 있음
Convergence error in numerical method.
99,9% probable user error, 0.1%, it could be real. Hey we cannot know, since we don't see your code. But the point is, you hav...

21일 전 | 1

답변 있음
Minimally constraining an FEA Model in Matlab
If it is resting on a surface, it is not resting gently, in the sense that it CANNOT freely expand below the surface. In fact, y...

대략 1개월 전 | 0

| 수락됨

답변 있음
Find specified number of points on curve with identical chord length (not arc length)
Admittedly, interparc does not solve the problem you want to solve. At least, not the probem you CLAIM you want to solve. As the...

대략 1개월 전 | 0

답변 있음
can this code be improved?
You have asked several questions. 1. Is it well written? 2. Can it be improved? Something you did not ask is if it SHOULD be imp...

대략 2개월 전 | 0

답변 있음
Eigendecomposition not fully utilizing all cores on M1 pro, matlab 2025b
Some operations are not as easily parallelized when utilizing automatic mutithreading. That is possibly the case for eig, where ...

대략 2개월 전 | 0

| 수락됨

답변 있음
I want to decrease the time my Script
If you want to speed up your code, then you need to make the effort. We cannot possibly know what you are doing here, at least n...

2개월 전 | 0

| 수락됨

답변 있음
Why Does polyval Return Zero When the Coefficients are Empty?
(This could easily better belong in a discussion than in Answers.) I could argue that any choice they made was arbitrary, becau...

2개월 전 | 0

Discussion


Little Fermat, a valuable tool for primality testing
In a previous discussion, https://www.mathworks.com/matlabcentral/discussions/tips/884294-oh-no-isprime-is-missing-just-kidding...

2개월 전 | 0

답변 있음
GA stops with different score every time, even with setting big MaxGeneations and MaxStallGenerations
Nonlinear solvers, of which GA is one, cannot be forced to ALWAYS return the optimal result. And while tools like GA are designe...

2개월 전 | 1

답변 있음
Does [V,D] = eig(A) always return normalized eigenvectors for any real matrix A?
Be a little careful that A is not in symbolic form, even if it is real and SPD. A = randn(4,3); A = A'*A % A MUST clearly be SP...

2개월 전 | 1

답변 있음
Is fit() deterministic when StartPoint is specified?
If the start point is specified, then yes, FIT should be deterministic. At that point there is no reason for any pseudo-random n...

3개월 전 | 2

Discussion


What is an emirp? Can we find a new world record size prime of this form, using only MATLAB, and a home computer?
An emirp is a prime that is prime when viewed in in both directions. They are not too difficult to find at a lower level. For ex...

3개월 전 | 0

답변 있음
fread a double that's been broken up into four 16 bit words
I don't see the problem. For example... Xtest = randn*100 Now, I'll split it into 4 hex numbers, each taking up 16 bits. Xhe...

3개월 전 | 0

답변 있음
vpasolve does not solve simple equation
Well, look more closely at your question. Plot it. syms x; A = 6.742; B = 4.82; F = A - 2/(9*(1 - x)^(1/2)) - B*x fplot(F,[0,...

3개월 전 | 0

| 수락됨

답변 있음
Any way to remove terms smaller than "digits" from symbolic expression? R2023a
While the solutions offered by @Paul and @Walter Roberson will both solve the problem you asked, be careful, as automatic approa...

4개월 전 | 0

답변 있음
When I use nlinfit, the sintax nlinfit(t0,p0 ,@(b,t) ...),but if Ireplace nlinfit with fmincon, the sintax is not valid, why?
@Marcos there is no need to use global variables. For example... x = rand(20,1); y = 3 + 4*exp(x*1.5) + randn(size(x))/3; plo...

4개월 전 | 0

답변 있음
Como puedo reiniciar mis cursos
"I took a course last year, completed it, and received the corresponding certificate. However, I need an updated certificate for...

4개월 전 | 1

답변 있음
Mixing name/value pair syntax
I have at least a couple of reasons why, which is why I will pose this as an answer. Knowing exactly which deliberations were ma...

4개월 전 | 0

답변 있음
**How can inflection points be robustly identified on a cumulative histogram (CDF) curve in MATLAB when only discrete, noisy CDF data is available?**
I'm sorry, but you are looking for magic that does not exist. An inflection point is a point where the SECOND derivative chang...

4개월 전 | 1

답변 있음
Convex bivariate B-spline by construction (PSD Hessian)?
Even without thinking about it, I'm pretty sure the answer is no. Things get nasty when you move beyond one dimension, and 2d is...

4개월 전 | 0

답변 있음
An easy way to input song chords into a structure of MATLAB
AVOID the function input. It only hurts your code, preventing you from growing. Learn to use other solutions for data input. One...

5개월 전 | 2

| 수락됨

답변 있음
I'm using a 2020 Mac Mini. Will R2017a run on this computer if I upgrade to MacOS Tahoe?
No. 2017a will NOT run on Tahoe. Just read the docs to tell you which OS versions can run R2017a. https://www.mathworks.com/co...

5개월 전 | 0

| 수락됨

답변 있음
Are iterative methods always better than direct methods for solving large linear systems?
The use case which some may miss here, is the very large array, where a dense solver fails due to memory, but even the sparse on...

5개월 전 | 2

답변 있음
solving a system of linear equations where A is a 40*40 sparse matrix
I'd suggest that sparse is almost meaningless when the matrix is only 40x40. At that point, the dense solvers are still extremel...

5개월 전 | 3

답변 있음
Putting spaces between elements of a string/
A = ['011001110000';'101111000000';'110100011000';'011010001100';'010101000110';'110010100010';... '100001010011';'10100010...

5개월 전 | 2

| 수락됨

더 보기