search for: fhurst

Displaying 3 results from an estimated 3 matches for "fhurst".

Did you mean: hurst
2006 Sep 16
1
regarding chaos
hi all, I have a simple question that does power spectral analysis related to capacity dimension, information dimension, lyapunov exponent, hurst exponent. If yes then please show me the way. I am newbie in the world of chaos. Sayonara With Smile & With Warm Regards :-) G a u r a v Y a d a v Senior Executive Officer, Economic Research & Surveillance Department, Clearing
2018 Jan 26
0
Help in Plotting in "fArma" Package
...?par > to search for other graphics parameters (base graphics) you can use to change various things. > > Success will depend, as Dave indicated, on how the package author handled the plotting options in rsFit(). Actually it's an S4 method: showMethods("show", classes="fHURST", includeDefs=TRUE) Function: show (package methods) object="fHURST" function (object) { x = object doplot = TRUE cat("\nTitle:\n ", x at title, "\n", sep = "") cat("\nCall:\n ") cat(paste(deparse(x at call), sep = "\n...
2018 Jan 26
2
Help in Plotting in "fArma" Package
What Dave said, plus here's a hint. Try this example (which uses base graphics): plot(1:5) plot(1:5, cex.lab=2) Then look at the help page for par help('par') or ?par to search for other graphics parameters (base graphics) you can use to change various things. Success will depend, as Dave indicated, on how the package author handled the plotting options in rsFit(). -Don --