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!