Concept Flow - Special operators (%in%, %*%)
Start
Evaluate left operand
Evaluate right operand
%in%: Check if elements of left are in right
%*%: Perform matrix multiplication
Return result
End
The special operators %in% and %*% take two inputs, evaluate them, then perform membership test or matrix multiplication, and return the result.