Skip to content
Prev 285873 / 398502 Next

How to determine a subset of a binary strings?

On Mon, Feb 20, 2012 at 03:15:53PM +0200, jing tang wrote:
Hi.

Try this

  all(x <= y) # [1] TRUE
  all(z <= y) # [1] TRUE
  all(x <= z) # [1] FALSE

Hope this helps.

Petr Savicky.