Help needed: New to pomp #192
-
Dear Professor King, I am emailing to ask some help as regards your popular package POMP. I am reading the documentation online and trying to use some examples to write my codes using the pomp package. But I as a novice I have spent hours trying to figure out the errors. I don’t seem able to fix it. Below is the code:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Here are some things I notice. I do not see how What is To raise a number to a power in C, one uses the In C, you must end a complete line with a semicolon. You have declared If you are new to C, you should look at some introductory tutorials about the language. There are many good ones. Compare the following:
|
Beta Was this translation helpful? Give feedback.
Here are some things I notice.
I do not see how
R0
supposed to be set in your code.What is
beta
and is it supposed to be different fromBeta
?To raise a number to a power in C, one uses the
pow()
function.In C, you must end a complete line with a semicolon.
You have declared
epsilon
andBeta
to be both parameters and local variables.If you are new to C, you should look at some introductory tutorials about the language. There are many good ones.
Compare the following: