Displaying 1 result from an estimated 1 matches for "m_ind".
Did you mean:
m_id
2001 May 03
3
Index vectors get overwriten ?!
Hello,
For some analysis of a mesh structure I need to prepare several vectors
of indexes of different length. This is done by the following code
sequence (including diagnostic output):
#--------------------------------------------------
MT_ind <- which(V1.frame[,2] %in% mm[,1])
print("M_ind")
str(M_ind)
Q1_ind <- which(V1.frame[,2] %in% mq1)
print("Q1_ind")
str(Q1_ind)
Q2_ind <- which(V1.frame[,2] %in% mq2)
print("Q2_ind")
str(Q2_ind)
MS_ind <- which(V1.frame[,2] %in% ms)
print("MS_ind")
str(MS_ind)
print ("---------------")...