adding functions in a m file instead in the command line

조회 수: 2 (최근 30일)
ARUN BORGOHAIN
ARUN BORGOHAIN 2017년 6월 20일
댓글: Walter Roberson 2017년 6월 20일
function x=mynewton (f,f1 ,x ,n)
x=0.1; % initial guess x0
n=100;
for i = 1:n
x = x - f(x) / f1(x); % Newton 's formula
end
x
Sir, I would like to declare these (f & f1) inside m file; pl. help
f = @(x) x^3 - 5
f1 = @(x) 3*x^2

채택된 답변

Walter Roberson
Walter Roberson 2017년 6월 20일
If you are using R2016b or later, you can put those two lines at the top of the .m file to create a script; you would then want to also put in a call to your mynewton function
If you are using R2016a or earlier, then you will need to put them into a different .m that you run before you call upon myNewton.
  댓글 수: 2
ARUN BORGOHAIN
ARUN BORGOHAIN 2017년 6월 20일
Thanks ; I am using much older version; pl add some patchup files in matlab site s.t i can get the facilities of R2016b!
Walter Roberson
Walter Roberson 2017년 6월 20일
There are no patch-up files for that purpose. You can purchase a newer version of MATLAB.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Compiler SDK에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by