dot in an expression
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi guys. What does the dot in sinc(x) = sin(x)./x do? Remove a singularity or what?
0 commentaires
Réponses (1)
David Fletcher
le 15 Avr 2021
Modifié(e) : David Fletcher
le 15 Avr 2021
Element by element division
5 commentaires
Adam Danz
le 15 Avr 2021
Modifié(e) : Adam Danz
le 15 Avr 2021
Compare the following
x = magic(3)
sin(x)/x % matrix division
sin(x)./x % element-wise division
Additional reference: https://www.mathworks.com/help/matlab/matlab_prog/array-vs-matrix-operations.html
Voir également
Catégories
En savoir plus sur Interpolation of 2-D Selections in 3-D Grids 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!