For probability distribution i am getting this error.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am diagonalizing Hamiltonian which is square matrix and i am getting eigen values like Ek =diag(D);
After then i have defined S = Ek+1- Ek and accordingly i have calculated X =S/mean(S), so now i am trying to calculate P(x) =(pi*x/2)*exp(-pi*x.^2/4), but in return i am getting error that attempted to access (0); index must be a positive integer.
Please let me know where i am doing mistake.
0 commentaires
Réponses (1)
Hornett
le 25 Avr 2024
The error message you're encountering, "attempted to access (0); index must be a positive integer," typically occurs in MATLAB when you're trying to index into an array with an index of 0 or a negative number, or when using non-integer values as indices. However, based on the operations you've described (calculating S, X, and then P(x)), it doesn't seem like you're directly indexing arrays. Therefore, the error might be indirectly related to the operations you're performing or a different part of your code not shown in your question. x`
0 commentaires
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!