Beantwortet
Finding a node in graph with most mutually adjacent nodes
Thanks for adding the tag, Steve! Here's another idea for how to do this. So you want to find all pairs of edges that go a->b a...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
eigen value what i am getting from matlab software that is not exact when i am compairing with hand calculated value and the mode shape i am getting is reverse
The results look correct to me, can you say what you are expecting instead? Two points that are maybe relevant: MATLAB does num...

fast 4 Jahre vor | 0

Beantwortet
The node number in the digraph does not match the node number used in shortestpath().
Try putting the node numbers in quotes: [path,d, edgepath] = shortestpath(G,"228","231"); You have given each node a name, and...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Unitary matrix with non-orthogonal eigenvectors?
The short answer is that it's possible to compute an orthonormal basis of eigenvectors for an orthogonal matrix, but that MATLAB...

fast 4 Jahre vor | 2

| akzeptiert

Beantwortet
Eigenvalue problem on non-Hermitian matrix
You can think of it like this: If there is an invertible V such that inv(V)*H*V=D, then you can expect that the matrix myW = inv...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Seasonal Breakdown from a Time Series data
Perhaps the trenddecomp function would be useful? It has an optional input period where a vector of several periods can also be ...

fast 4 Jahre vor | 1

Beantwortet
How to find all the downstream nodes from a node in a graph?
Looking at this again due to the recent comment added, it might be simpler to use a directed graph instead of an undirected one:...

fast 4 Jahre vor | 1

Beantwortet
Which solver should I use to solve a square and symmetric, linear system of equations?
The first thing to check is the size and density of your matrix. The SYMMLQ function you mentioned is one of a group of methods ...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Can we compute the graph Laplacian matrix for a directed graph?
It depends how you want to define it, there is no one consistent definition of what the graph laplacian of a directed graph is. ...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
eigs using 'smallestabs' vs scalar
Hi Jack, I had initially misunderstood that you were getting different results when passing in 'smallestabs' vs. passing in the...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
missing eigenvector when using eig on defective matrix
The short answer is that this is a case where a small change in the input matrix has a large effect on the eigenvectors being co...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
THE GRAPH FUNCTION DOESN'T CONSIDER WEIGHTS
Hard to say what's going wrong without seeing your code. Here's an example where you can see the weights being used to decide on...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
mldivide (backslash): advantage by using sparse matrix instead of a full matrix with respect to the quality of the results?
The condition estimate used in mldivide to decide if a warning should be given is much less accurate for the sparse case. This i...

etwa 4 Jahre vor | 2

| akzeptiert

Beantwortet
LDL does not support complex symmetric matrices
Largely the reason LDL doesn't support this is that it's less commonly requested for complex symmetric matrices than for complex...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Inconsistency in behavior of SVD
Firstly, I agree completely with John's great explanations above: Any singular value below eps*first singular value should be tr...

etwa 4 Jahre vor | 3

| akzeptiert

Beantwortet
Accuracy Problem when solving linear equation system using: lu(S) vs. decomposition(S,'lu')
The version in decomposition does some optional steps of iterative refinement: It uses the same solution you have above based on...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Need help fixing errors on code written in old MATLAB syntax
I'd also recommend replacing the calls svd(A) and svd(A, 0) with calling svd(A, 'econ'), since the code here is only using the f...

etwa 4 Jahre vor | 0

Beantwortet
Different results on different computers, Matlab 2021b - 64 bit, windows 64 bit, both Intel chips
First, about "which value to trust?" Both values are equally trustworthy, the differences in results come down to applying the ...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
eigs with Extended Capabilities
The first of these would only be useful if you need to apply EIGS to many problems in parallel, in which case each of these coul...

etwa 4 Jahre vor | 1

Beantwortet
How to parallelize many small SVD's on a GPU
As of R2021b, there is a function pagesvd which is supported on both CPU and distributed arrays. It's not supported for gpuArray...

etwa 4 Jahre vor | 2

| akzeptiert

Beantwortet
How does shortestpath function work?
Every edge has a number, which is the order in which they appear in the Edges table (try displaying g.Edges). The edgepath conta...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
Eigs passes the wrong StartVector
The standard method used in EIGS is only efficient for matrices that are quite large. When eigs detects that the input matrix is...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to enhance the performance of Matalb's function sqrtm?
Not in general. You might be able to find a cheaper but less accurate way to compute this, but if that's acceptable would depend...

etwa 4 Jahre vor | 0

Beantwortet
fastest path between more than two nodes
To compute simply the shortest-path distance, you can use the distances function and pass in a graph object you've constructed u...

etwa 4 Jahre vor | 1

Beantwortet
Follow a complex eigenvalue in a spectrum at different times
You could try using the matchpairs function: rng default; d = randn(20, 1) + 1i*randn(20, 1); d2 = d + 0.1*(randn(20, 1) + 1i...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
Error using eig in Matlab 2021b by using Parallels 17 of Macbook Pro (M1 )
Since MATLAB is trying to load a .dll file, I'm assuming you're running a Windows VM on this Macbook Pro. MATLAB doesn't support...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
use of svds with function handles
The svds function needs to be able to apply both A*x and A'*x, so your function handle should accept a second input which is eit...

mehr als 4 Jahre vor | 2

Beantwortet
How to compute cholesky to all slice of a tensor?
There isn't another way to do this right now. We have functions that do other linear algebra operations to each page of an ND-ar...

mehr als 4 Jahre vor | 1

Beantwortet
Why does mldivide solve equations so fast that FORTRAN can't compare it?
MATLAB's mldivide uses multithreading. It doesn't use the GPU unless you have the Parallel Computing Toolbox and are using the g...

mehr als 4 Jahre vor | 0

Beantwortet
How to highlight single edges in an undirected graph?
Do you still want the multiple edges to be displayed? If not, you can use the simplify command to reduce all multiple edges to j...

mehr als 4 Jahre vor | 1

| akzeptiert

Mehr laden