dot in an expression

조회 수: 1 (최근 30일)
Robert Bag
Robert Bag 2021년 4월 15일
편집: Adam Danz 2021년 4월 15일
Hi guys. What does the dot in sinc(x) = sin(x)./x do? Remove a singularity or what?

답변 (1개)

David Fletcher
David Fletcher 2021년 4월 15일
편집: David Fletcher 2021년 4월 15일
Element by element division
  댓글 수: 5
Robert Bag
Robert Bag 2021년 4월 15일
Ok read now.thnx
Adam Danz
Adam Danz 2021년 4월 15일
편집: Adam Danz 2021년 4월 15일
Compare the following
x = magic(3)
x = 3×3
8 1 6 3 5 7 4 9 2
sin(x)/x % matrix division
ans = 3×3
0.0997 -0.1770 0.1807 0.0666 0.0824 -0.1597 -0.1543 0.2902 -0.0983
sin(x)./x % element-wise division
ans = 3×3
0.1237 0.8415 -0.0466 0.0470 -0.1918 0.0939 -0.1892 0.0458 0.4546

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile 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!

Translated by