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