Concept Flow - Vector recycling behavior
Start with two vectors
Compare lengths
Is length of longer vector multiple of shorter?
No→Warning: partial recycling
Yes
Recycle shorter vector elements to match longer
Perform element-wise operation
Return result vector
This flow shows how R repeats elements of the shorter vector to match the longer vector length before element-wise operations.