dot in an expression
1 次查看(过去 30 天)
显示 更早的评论
Hi guys. What does the dot in sinc(x) = sin(x)./x do? Remove a singularity or what?
0 个评论
回答(1 个)
David Fletcher
2021-4-15
编辑:David Fletcher
2021-4-15
Element by element division
5 个评论
Adam Danz
2021-4-15
编辑:Adam Danz
2021-4-15
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
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interpolation of 2-D Selections in 3-D Grids 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!