If there are two vectors, say x and y.
for (i in 1:length(x))
z[i] = max(x[i],y[i])
Can you please help me to perform this without using a loop?
|
If there are two vectors, say
Can you please help me to perform this without using a loop? |
||||
|
Assuming that the vectors
If the lengths differ, the |
|||
|
|
|
For completeness sake I include a solution which uses
I don't know how the different solutions compare in terms of speed, but, @JevgenijsStrigins, you could check quite easily. |
|||||||||||||
|
?max. – Joshua Ulrich Dec 30 '12 at 18:18