Displaying 1 result from an estimated 1 matches for "xc_rng".
Did you mean:
x_rng
2012 May 11
1
domain/number line/range reduction problem
...the x range if they were not eliminated by an s range.
Is there some function(s) in R that would make this easy?
Ex 1.
For:
x_rng = c(-100,100)
s1_rng = c(-25.5,30)
s2_rng = c(0.77,10)
s3_rng = c(25,35)
s4_rng = c(70,80.3)
s5_rng = c(90,95)
I would get:
xa_rng = c(-100,-25.5)
xb_rng = c(35,70)
xc_rng = c(80.3,90)
xd_rng = c(95,100)
Ex 2.
For:
x_rng = c(-50.5,100)
s1_rng = c(-75.3,30)
I would get:
xa_rng = c(30,100)
Ex 3.
For:
x_rng = c(-75.3,30)
s1_rng = c(-50.5,100)
I would get:
xa_rng = c(-75.3,-50.5)
Ex 4.
For:
x_rng = c(-100,100)
s1_rng = c(-105,105)
I would get something like:
xa_...