How would I sum a function and use fzero?
조회 수: 3 (최근 30일)
이전 댓글 표시
I want a function to look like this y=sin(t1-T)+sin(t2-T)+sin(t3-T)+...+sin(tn-T) and use the fzero to find T. How would I go about this? Thank you in advance.
댓글 수: 0
답변 (3개)
Roger Stafford
2017년 10월 22일
편집: Roger Stafford
2017년 10월 22일
Using ‘fzero’ on that particular problem is needlessly inefficient. You can use ‘atan2’ and ‘asin’ instead.
cn = cos(t1)+cos(t2)+...+cos(tn);
sn = sin(t1)+sin(t2)+...+sin(tn);
p = atan2(sn,cn);
as = asin(y/sqrt(sn^2+cn^2));
T1 = p-as; % One solution (in radians)
T2 = p+as-pi; % Another solution (in radians)
Also any multiple of 2*pi added or subtracted from T1 or T2 is a solution. (Note that the inequality y^2<=sn^2+cn^2 must be true for a solution to exist.)
Andrei Bobrov
2017년 10월 22일
f = @(T)sum(sin(t(:) - T))
fzero(f,.5)
댓글 수: 1
J. Nash
2017년 10월 22일
Wow this is even shorter. Helps a lot since I have around 1000 lines of code. Many thanks for making my code easier.
참고 항목
카테고리
Help Center 및 File Exchange에서 Problem-Based Optimization Setup에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!