Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Count to 10
#31
shouri Wrote:R
Code:
seq(1:10)

You only need to write '1:10' and it'll output them. Probably works in MATLAB too, though I don't have a copy.

If you want it to actually print them,
Code:
cat(1:10)
Will give you the output you want. Or, to match with the other loops,
Code:
cat(1:10,sep="\n")
Will put each on a new line.


Getting into stupider methods of doing it in R...
Code:
y <- c(1:10,0)
x <- 1:11
c <- (lm(y ~ poly(x,10,raw=TRUE)))$coefficients
f <- function(x) {
  return(c[1] + c[2]*x + c[3]*x^2 + c[4]*x^3 + c[5]*x^4
         + c[6]*x^5 + c[7]*x^6 + c[8]*x^7 + c[9]*x^8
         + c[10]*x^9 + c[11]*x^10)
}
f(1:10)
Fit a degree 10 polynomial to the sequence, plus 0. Create a function that evaluates that polynomial. Then calculate the values of that function at the points 1 to 10.
Reply


Messages In This Thread
Count to 10 - by Hazzy - 2011-05-22, 11:24 PM
Count to 10 - by Erebus - 2011-05-22, 11:34 PM
Count to 10 - by Hazzy - 2011-05-22, 11:35 PM
Count to 10 - by Eos - 2011-05-22, 11:52 PM
Count to 10 - by FenixR - 2011-05-22, 11:53 PM
Count to 10 - by Kalovale - 2011-05-23, 12:30 AM
Count to 10 - by Eos - 2011-05-23, 12:37 AM
Count to 10 - by shouri - 2011-05-23, 12:45 AM
Count to 10 - by FenixR - 2011-05-23, 12:54 AM
Count to 10 - by Fiel - 2011-05-23, 01:04 AM
Count to 10 - by Hazzy - 2011-05-23, 01:04 AM
Count to 10 - by shouri - 2011-05-23, 01:16 AM
Count to 10 - by Eos - 2011-05-23, 01:21 AM
Count to 10 - by Kalovale - 2011-05-23, 01:25 AM
Count to 10 - by GMSInfighter - 2011-05-23, 01:27 AM
Count to 10 - by Fiel - 2011-05-23, 01:29 AM
Count to 10 - by Luacake - 2011-05-23, 01:34 AM
Count to 10 - by Eos - 2011-05-23, 01:37 AM
Count to 10 - by Fiel - 2011-05-23, 01:39 AM
Count to 10 - by Eos - 2011-05-23, 01:41 AM
Count to 10 - by GMSInfighter - 2011-05-23, 01:49 AM
Count to 10 - by Erebus - 2011-05-23, 01:58 AM
Count to 10 - by shouri - 2011-05-23, 02:06 AM
Count to 10 - by Luacake - 2011-05-23, 02:43 AM
Count to 10 - by Loose - 2011-05-23, 03:51 AM
Count to 10 - by Hazzy - 2011-05-23, 01:59 PM
Count to 10 - by OB3LISK - 2011-05-23, 04:44 PM
Count to 10 - by Nikkey - 2011-05-23, 06:04 PM
Count to 10 - by Shidoshi - 2011-05-23, 06:10 PM
Count to 10 - by Luacake - 2011-05-24, 02:05 AM
Count to 10 - by Stereo - 2011-05-24, 02:37 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)