Best way to write this function in matlab while using eps in the denominator to avoid zero
조회 수: 1 (최근 30일)
이전 댓글 표시
Here's what I had z = (xx.*yy.*(xx.^2-yy.^2))/(eps(xx.^2+yy.^2)); but I kept getting a rank deficient error
댓글 수: 1
KSSV
2016년 11월 28일
Your denominator is x^2+y^2, it will be zero for x = y = 0. You have to skip these values. Post your full code.
답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!