Community Profile

photo

John D'Errico


Retired

Last seen: 1 day ago Active since 2006

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.

Statistics

All
  • Editor's pick for Answers
  • Revival Level 4
  • Quiz Master
  • Promoter
  • Top Downloads 2022
  • Top Downloads 2021
  • Top Downloads 2020
  • Top Downloads 2019
  • Personal Best Downloads Level 5
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5

View badges

Content Feed

Answered
how create cell 1:10 vertical
There are always many ways to solve a problem. An easy way to create the cell array directly is to do this: C1 = {1;2;3;4;5;6;7...

17 hours ago | 0

Answered
How can I fill the area under a curve with different colors?
Simple. Just use fill (or patch) to fill THREE patches, each with the desired color. How can it be any simpler? Or, you could ...

20 hours ago | 1

Answered
How to use MATLAB to complete the rank of a matrix?
Trivial. Replace the offending columns with vectors of random numbers. DONE. With probability 1, the result will be full rank. ...

3 days ago | 0

Answered
how to solve a simplified 2D trajectory problem with defined points and derivatives
I think what you are missing is the time required to perform this movement between points. You have specified the start locati...

4 days ago | 1

| accepted

Answered
How to count the occurrence of numbers in certain value range (show 0 if no occurrence)
The simple answer is you want to use the wrong tool. Yes, it looks like you want to use groupcounts. But you don't. P=[1 1 3 4 ...

4 days ago | 0

| accepted

Answered
How to extrapolate the first 5 points
load points.mat x = points(:,1); y = points(:,2); i1 = 1:5; i2 = 6:336; plot(x(i1),y(i1),'ro',x(i2),y(i2),'g.') I have no ...

5 days ago | 0

Answered
What is the mechanism or math behind the function islocalmax(A)?
Someone who is not an employee of TMW cannot see the code. (I can't, as I am not an employee.) And if someone is an employee, th...

5 days ago | 1

| accepted

Answered
how to find data points of function passed through a distorted "pipe"?
A difficult question to answer, since so much is left to guess. And the vaguesness of your question suggests all you want is a r...

6 days ago | 0

| accepted

Answered
How can we solve an equation if it has infinite number of solutions?
Can you ALWAYS find all solutions to a problem in some interval? NO. Sometimes, the use of returnconditions will help, since it ...

6 days ago | 0

Answered
Converting from symbolic to numerical data
Do you understand that sin and cos assume RADIANS, NOT degrees? But you are substituting in angles that are clearly in terms of ...

6 days ago | 1

| accepted

Answered
How can I make a vector that looks like this [2 1 2 1 1 4 1 1 6 1 1 8...1 100 1]?
If I had to guess, you might want to do this: V = ones(1,151); V(1) = 2; V(3:3:end) = 2:2:100; V The last few elements of...

7 days ago | 1

Answered
MATLAB, draw tolerances in a plot similar to errorbar in matlab, but perpendicular to points in the curve.
You can want code to do as you want, but it won't help. And there is no version of errorbar that will do as you want. This means...

9 days ago | 0

Answered
New to matlab, trying to understand basic functions still
If you are this new to MATLAB, then you seriously need to spend some tie reading the tutorials available. The MATLAB Onramp is ...

11 days ago | 0

Answered
ITERATIVE SOLUTION OF ONE UNKNOWN VALUE IN AN EQUATION
Hint: try solving for t. syms x y t tsol = solve(x == cos(t) - y*sin(t),t) So there are two solutions. Much of the time, a f...

11 days ago | 0

| accepted

Answered
Unable to find explicit solution
It is not just that MATLAB could not solve it. In fact, it is trivially easy to write down equations where there is no algebraic...

11 days ago | 0

| accepted

Answered
Using biterr with negative numbers
Did I not just answer how to solve essentially the same problem, but in the other direction? Read my answer to your last questio...

13 days ago | 0

Answered
Do you know how to convert existing graph into coding. I don't have the equations. I have the graph picture in my textbook but i need it to include in my matlab apps
I'm sorry. There is no magic way to know the formula of a given graph in a textbook. And no magic way to just turn that graph in...

13 days ago | 1

Answered
How do I generate a random number vector composed of just 1 and -1
The trick is always to start with something you can do, and see if there is a way to modify it so it will work. For example, yo...

13 days ago | 1

Answered
I am a university student and this is my university email: redacted@eng.zu.edu.eg Can I get Matlab for free? If possible, how do I get the activation key?
I assume you are a student in Egypt, given the address. MATLAB is not offered for free. However, you need to contact your unive...

15 days ago | 0

Answered
Solve these equations to get x and y in normal number
USE DOUBLE. You already saw that in the answer to your last question. syms x y equ1 = 2760*sind(200)+x*sind(107.5)+y*sind(307....

15 days ago | 0

Answered
How to deal with the Hermitian matrix that is meant to be positive semidefinite but turned out to have negative eigenvalue due to numerical issues?
This is not a question of a precision you can set. You can download my nearestSPD function from the file exchange. It finds the...

15 days ago | 1

| accepted

Answered
i was calculate using gauss jacobi method with 4x4 matrice, why does NaN appear? what should i do?
You write a function that allows you to pass in A and B, but then you define A anb B in the function? Sigh. I think you do not u...

15 days ago | 0

Answered
Graphing changing constants using for loops
Why do you think it is not? Ok, there are multiple problems in your code. First, maybe I should ask what you think this line do...

16 days ago | 0

| accepted

Answered
Best practice: should a function return a row vector or a column vector
Let me disagree with a basic assumption of your question, in that there must be some best practice at all on this. Instead, I'll...

17 days ago | 2

Answered
I don't understand why this script is outputting imaginary values
Hint: the log of a negative number is imaginary. Hint: The sqrt of a negative number is imaginary. Do you take logs in there?...

18 days ago | 1

Answered
I need help figuring out the mistake in my function approximation
Avoid the use of the normal equations as you used, i.e., this crapola that you called the least squares method. Backslash is jus...

18 days ago | 0

Answered
quadratic curvature doesn't went smoothly
load steam % Fit a first degree polynomial to the data. [p s]= polyfit(x,y,2); y1=polyval(p,x); % PLOTTING DATA plot(x,y,'o...

20 days ago | 0

Answered
surf for n-dimensional cartesian matrix
You cannot do so. That makes no sense at all, sorry. You actually have a FOUR dimensional problem, thus W(x,y,z). This is beca...

21 days ago | 0

Answered
problem with symbolic factorization with two symbols
That you want to see a simple set of factors is not relevant. You essentially need to obtain the roots of this cubic polynomial ...

23 days ago | 1

| accepted

Answered
fmincon: optimize till nonlinear condition is false
It does not just skip" the interval. It probably never saw it. An optimizer does not plot your function. It has no clue what it ...

25 days ago | 1

Load more