I have a decimal variable x0.
I want to make a vector from [x0, 6] increasing by 0.01 each time.
I know it's something like c(x0:6, by=0.01)
but that didn't work.
If you want to create a sequence vector containing numbers you use the : operator. For example, 1:15 will generate a vector with numbers between 1 and 15. To gain more control you can use the seq() method.
x0 = 5.9 seq(x0, 6, 0.01) [1] 5.90 5.91 5.92 5.93 5.94 5.95 5.96 5.97 5.98 5.99 6.00
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With