photo

John D'Errico


Retired

Last seen: Today 自 2006 起处于活动状态

Followers: 14   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

已回答
Optimisation of three function in two variables
There may be an issue here, if you think you can maximize them all simultaneously. The (x,y) coordinates that maximizes one func...

19 hours 前 | 1

已回答
About fitting one curve with one equation and calculating two values from fitting
Suppose I gave you a set of data, and asked you to tell me two parameters from the data. All I need is one data point, More woul...

2 days 前 | 0

已回答
How to fit this model with a Weibull distribution?
If this is data that you think comes from a Weibull, then you do not want to use regression techniques to fit the distribution. ...

5 days 前 | 0

已回答
how i can show in matlab tha sqrt(x^2)=x in symbolic toolbox
Except, that equality does NOT hold! The sqrt "function" has two branches. sqrt(x^2) can as easily be -x, as it is x. So you can...

10 days 前 | 1

已回答
I keep getting 4 answers per variable in 4x1 sym
L = 225; % Length of the ship in meters B = 32; % Beam of the ship in meters T = 12; % Draft of the ship in meters v = 0.5; %...

12 days 前 | 1

已回答
Find zero of simple monotonic function where the independent variable can only be integer
@Michael Albert No. You just THINK there is some obscure MATLAB function to solve your problem. You do not know that to be the ...

12 days 前 | 0

已回答
Why is my test accuracy higher than validation accuracy?
Not really. It might be a reflection that you needed more data, that your sets are just not large enough. The law of large numbe...

12 days 前 | 0

已回答
What is happening with the line of best fit here?
StrainStress = [0.00005 010.1; 0.00007 014.3; 0.00011 021.8; 0.00014 027.6; 0.00020 040.0; 0.00030 061....

13 days 前 | 1

| 已接受

已回答
Generating a matrix of 0s and 1s with constrained domains
Are you saying you want to break the matrix into a set of regions, where within the region, the matrix contains zeros, and the r...

14 days 前 | 0

已回答
How to provide a positive and negative value for the tolerance value?
Good answer by @Voss of course. I'll merely add a few points of interest. You could just test to see if the current term being ...

15 days 前 | 1

已回答
Finding out lengths of sequences of numbers in a set of vectors
It took a few seconds staring at the output you expect to see, and realize what you meant. I THINK the first element in each row...

15 days 前 | 1

已回答
Is there a premade file regarding a verification test to see if there is any issues with the installation?
Is there anything that will test every line of code in MATLAB? Every toolbox you have purchased? No. Not that is given out to yo...

16 days 前 | 0

已回答
I have a question relate to Gauss seidel method
Updating the vector x (small x) and then looking to see if the vector X (capital X) is converging seems like a bad idea. You did...

16 days 前 | 0

已回答
integral using "int" function
Not everything you write down will have a simple, algebraic solution. As much as people seem to think they are, computers are no...

17 days 前 | 0

已回答
f(x) = x^2/3(3-x^2)(x-4). How do I enter this function in MATLAB?
How do you enter it? You already did exactly that, at least in symbolic form. syms x real % f= input('Enter the function f(x):...

18 days 前 | 0

已回答
Very large output numbers
syms Kc s X = (6982830709666455*Kc*s)/140737488355328 vpa(X,10) So here, 10 digits shown.

19 days 前 | 0

已回答
atan2 does not accept complex numbers as input
It seems the answers provided so far are missing the point. If we want to see a 4 quadrant atan2 version, that works for complex...

19 days 前 | 1

| 已接受

已回答
Generalised solution to a n-order system of equations
(Edited to fix my error in extrapolating your equation system. I had not seen at first you were essentially adding two terms to ...

20 days 前 | 2

已回答
I need to write a code to find numbers divisible by 7 and multiples of 5 from 1500:2700. How do I preallocate line 4 for speed and is my code the most efficient way to solve
Lol. A huge amount of traffic on this from last night when I looked in. But you did write code. So how would I solve the problem...

20 days 前 | 0

已回答
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...

21 days 前 | 1

已回答
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 ...

21 days 前 | 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...

22 days 前 | 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...

24 days 前 | 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...

25 days 前 | 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...

26 days 前 | 0

| 已接受

已回答
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 ...

26 days 前 | 0

| 已接受

已回答
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. ;-) ...

27 days 前 | 2

| 已接受

已回答
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...

27 days 前 | 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....

28 days 前 | 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....

28 days 前 | 0

加载更多