fzero function troubles/errors

조회 수: 1 (최근 30일)
Bob
Bob 2015년 1월 31일
답변: Mischa Kim 2015년 1월 31일
question is Use fzero to find the largest x-value where ex+1 meets cos(5x). Use a nearby sensible integer value of your choice.
Code that I have: fzero('exp^(x+1)==cos(5*x)',10)
error: Error using fzero (line 289) FZERO cannot continue because user-supplied expression ==> exp^(x+1)==cos(5*x) failed with the error below.
Error in inline expression ==> exp^(x+1)==cos(5*x)
Not enough input arguments.
Error in project1 (line 31) p16=fzero('exp^(x+1)==cos(5*x)',10)

채택된 답변

Mischa Kim
Mischa Kim 2015년 1월 31일
Bradley, use
sol = fzero(@(x) exp(x+1)-cos(5*x),10)
sol =
-26.075219024797857

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Chemistry에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by