
John D'Errico
Retired
DON'T contact me, as too many students then decide I am their personal consultant if I allow it. Anyway. I won't answer questions. PERIOD. I don't do your homework. I won't do consulting by mail. A retired mathematician, numerical analyst, woodworker, bridge player.
Statistics
Content Feed
Data fitting using thin-plate spline/interpolation
This is a common problem people have with splines in any form. They hope to see some nice simple function they can write down. M...
約9時間 前 | 2
How to display a message as flashing and in my desired color and font size?
You can do that, but since disp is not written to accept those extra arguments, it might not work. Wanting code to do what you w...
約21時間 前 | 1
3d plot of Tridimensional parabolic motion
It should look strange. Why? g=9.8; z0= 14325; x0=0; y0=0; V_0= 200*0.3048; gamma=0.78; V_0x=V_0*cos(gamma); V_0y=V_0*co...
約24時間 前 | 0
| 採用済み
Can I define or change the direction of 'reshape'?
No. You cannot do so. You cannnot change how reshape works. HOWEVER. Nothing stops you from changing that afterwards. For examp...
1日 前 | 1
| 採用済み
Isolate horizonal part of curve
What part of this curve is horizontal? syms x F = exp(-10*x) fplot(F,[0,3]) Well, clearly, ithe horizontal part lies above x...
2日 前 | 1
A way to write "if x is in y matrix do this"
You CANNOT use ismember to test if a number is in an interval. Even ismembertol does not do that. Using code to do something it ...
2日 前 | 0
numerical integration inf to inf
You cannot use trapezoidal rule to do the integration exactly fully to the endpoints, since the shape of that function is too ex...
2日 前 | 0
What is the maximum size of *.mat file?
There is no maximum size of either file. It would be strictly dependent on the memory you have available. Well, you could say ...
2日 前 | 0
Upper bound curve that passes through the extreme (highest) points
I would argue a convex hull is probably at least close to what is wanted. That it works here because the envelope is roughly a c...
3日 前 | 1
How to find number of bit change between binary numbers?
Read what @Jan said. xor followed by sum is the simple way to go, of course. And we really have not been given enough informatio...
3日 前 | 1
infinity recursion with in the program
What do you expect? Look carefully at your code. I've extracted the only lines that matter below. function stabil = punktStabil...
3日 前 | 0
| 採用済み
Most efficient way to solve a symbolic equation system with more than 2k unknowns
Symbolic solvers are SLOW. Well, comparatively so. This is partly because they use high precision. The computations, if they are...
4日 前 | 0
I want to ask how to define the partial fraction code single number located at the numerator?
Remember that MATLAB does not understand implicit multiplication. That is, 4x is not interpreted as 4*x. In MATLAB, 4x is just a...
4日 前 | 0
How to extrapolate the data while some data is already supplied on one spine?
Extrapolation using a spline (in any form)? A terribly bad idea in general. Extrapolation over a long distance? Another terribl...
4日 前 | 0
| 採用済み
Why DerivativeCheck would be allowed to be on while there is no GradObj?
You can set other options that will be ignored if they are not applicable. Would you rather have the code fail for no reason on ...
5日 前 | 0
Finding the first index of a row where all integers of a defined list have occurred
Given a vector, can you simply find the first index where all have occurred? Just use ismember. x=randi([1,4],1,100) [~,locs] ...
5日 前 | 0
| 採用済み
How do I separate terms using symbolic expression?
Trying to get a symbolic tool to give you exactly the form you want to see is often terribly difficult, and usually not worth th...
5日 前 | 0
Orthogonality by Singular value decomposition "svd"
Seems easy enough. A = randi(5,[5,3]) rank(A) So A is a simple matrix, with rank 3. There are 3 vectors that would form a bas...
5日 前 | 1
How do I solve a linear optimization problem with a constrained output?
Seems easy enough. For example, suppose you have a linear programming problem where you solve it to minimize over x. But you al...
5日 前 | 1
I want to check if something algebraically simplifies to 0 when i sub in values
syms q1 q2 q3 g Y u a rho e E=[q2,((q2^2)/q1)*(1-(g-1)*.5)+(g-1)*q3,((q3*q2)/q1)+(g-1)*((q3*q2)/q1)-.5*(g-1)*(q2^3/q1^2)]; Q=[...
5日 前 | 0
How to convert a point in meshgrid to vector coordinates?
You already have the coordinates, so I'm not at all sure what your question asks. Perhaps an example would help. x = -10:5:10 ...
5日 前 | 0
| 採用済み
How can I access the following builtin function code? [L,p] = chol(A,'lower')
Easy. Get a job at The MathWorks. If that is not an option for you, then sorry, you don't get to see the source code. They don'...
6日 前 | 0
Optimising Limits of Chain integrals
I can't imagine why you want to do this. BUT, it is an interesting problem, so I'll take a look. Assume that all functions are ...
6日 前 | 0
How to calculate the symbolic integration of rational functions?
If the polynomial has a sufficiently low degree, it can always be factored, in which case as has been pointed out, you just turn...
7日 前 | 1
pos function does not work
Now that we see what is meant by pos, we see that in fact, pos is just an array. It is not a function at all. https://in.mathw...
7日 前 | 0
| 採用済み
Pipe elbow creation using MATLAB code
What is not working? Why do you think it is not working? I would conjecture that one problem you have is you cannot model a 90 ...
7日 前 | 1
| 採用済み
plot using matlab(parabolic)
It IS curved, though not truly parabolic. A parabola means something specific about the shape, as a polynomial curve. But you ju...
8日 前 | 0
Creating equal lists by minimizing variance on two factors
Why should there be such a function? My guess would be you want to use a tool like kmeans, clustering your data in 2 dimensions...
8日 前 | 0
pos function does not work
which pos We cannot tell you how to use a function that does not exist in MATLAB. Is pos a function that would be found on the...
8日 前 | 0
Find integral upper limit knowing the result and having an array
A basic rule is, you CANNOT use integral OR fzero with data, thus a vector of numbers. You CAN approximate your data using a fu...
8日 前 | 0