How do I verify a statement and display the resulting matrix that consists of logical 1 or 0?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, here is the question: Write the statement which verifies whether D is a symmetric matrix. Display the resulting matrix matl, consisting of logical 1 or 0.
here is matD:
matD =
756.0160 458.6732 679.2602 208.3018
458.6732 286.0436 416.9705 136.3031
679.2602 416.9705 613.3440 193.3708
208.3018 136.3031 193.3708 70.0789
Thank you so much!
0 commentaires
Réponses (2)
KSSV
le 27 Oct 2017
Let A be your matrix...
iwant = isequal(A,A') ;
Read about isequal .
0 commentaires
Voir également
Catégories
En savoir plus sur Elementary Math 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!