Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How can I find t-statistics for parameters a, b of a function f = 1 / (a.log(x)+b) using matlab?

조회 수: 1 (최근 30일)
Nick
Nick 2013년 2월 7일
마감: MATLAB Answer Bot 2021년 8월 20일
I have a function of this type: f = 1 / (a.log(x)+b), and I need to find t-statistics for parameters a and b... How can I do this? Is it helpful to do this using curve fitting tool? Can you give me an example?

답변 (1개)

Tom Lane
Tom Lane 2013년 2월 7일
Do you have a recent version of the Statistics Toolbox available?
>> load census
>> d = dataset(cdate,pop);
>> nlm = NonLinearModel.fit(d,'pop ~ 1/(a*log(cdate)+b)',[1 1])
The output includes t statistics

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by