Answered
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. ...

2 years ago | 0

Answered
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...

2 years ago | 2

| accepted

Answered
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...

2 years ago | 0

Answered
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...

2 years ago | 0

Answered
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...

2 years ago | 0

| accepted

Answered
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, ...

2 years ago | 0

Answered
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...

2 years ago | 0

| accepted

Answered
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...

2 years ago | 0

| accepted

Answered
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...

2 years ago | 0

Answered
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...

2 years ago | 1

| accepted

Answered
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...

2 years ago | 0

Answered
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...

2 years ago | 0

Answered
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...

2 years ago | 0

Answered
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)?)...

2 years ago | 1

Answered
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...

2 years ago | 1

Answered
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...

2 years ago | 0

Answered
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 ...

2 years ago | 1

Answered
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...

2 years ago | 0

Answered
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...

2 years ago | 0

Answered
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...

2 years ago | 0

Answered
I want show population on plot like 36M, 37M....
You want the plot to plot each point as a string like 36M, 38M, etc? Why not just divide by 1e6, then use the axis label to ind...

2 years ago | 0

| accepted

Answered
Why are the components of the two eigenvectors not continuous and smooth, when the underlying data is continuous and smooth?
You can think of the eigenvalues (and assiciated eigenvectors) as coming from the roots of a polynomial. In fact, they do exactl...

2 years ago | 2

Answered
How to interpolate values given a starting and end point
If you ONLY have two data points, the only possible interpolation is LINEAR. There is no fancy method to interpolate in a nonlin...

2 years ago | 0

Answered
Syntax for specifying boundary condition using dsolve.
Your beam is fixed in position at the left end, as is the slope at that point. At the right end, you have fixed the location, b...

2 years ago | 1

| accepted

Answered
How to use fminsearch for vectors
I think your problem is you are confused. And your confusion turns into a highly confusing question. Questions like is the optim...

2 years ago | 1

Answered
How to Reduce Oscillations (not noise) in a Signal?
To me, the upper signal looks like the convolution of something like a sinc with the lower signal. And that would mean, IF you k...

2 years ago | 0

Answered
How to find the intersection of linear regression model and yline
Pretty boring data. T(:,1) = [0 1 2 3 4 5]; T(:,2) = [0 1 2 3 4 5]; P = polyfit(T(:,1),T(:,2),1) a = P(1) b = P(2) They...

2 years ago | 0

Answered
Issue with solving ill-conditioned symbolic DAE system
You have a DAE, with a linear constraint system that happens to be ill-conditioned. I would try reducing the constraint system. ...

2 years ago | 0

Answered
inv(A)*B*inv(A) or A\B/A, which is more accurate for a full rank A and half rank B
Why would you want to compute the inverse of A TWICE ANYWAY? Even using both slash and backslash is arguably a bad idea, since a...

2 years ago | 0

| accepted

Answered
Finding accurate inverse of binary circulant matrix
Gosh. I thought that multiplying a matrix by its inverse gives an identity matrix. :) A = readmatrix('MixingLayer.xlsx','sheet'...

2 years ago | 0

Load more