dot in an expression
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi guys. What does the dot in sinc(x) = sin(x)./x do? Remove a singularity or what?
0 Commenti
Risposte (1)
David Fletcher
il 15 Apr 2021
Modificato: David Fletcher
il 15 Apr 2021
Element by element division
5 Commenti
Adam Danz
il 15 Apr 2021
Modificato: Adam Danz
il 15 Apr 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
Vedere anche
Categorie
Scopri di più su Interpolation of 2-D Selections in 3-D Grids in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!