blob: 285936bf155f18c851fe09808b0a9fbbdc997672 [file] [log] [blame]
#-------------------------------------------------------------
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#-------------------------------------------------------------
A = matrix(0, 1, $1*$2);
L = list(A+1,A+2,A+3,A+4,A+5,A+6,A+7);
parfor(i in 1:length(L))
L[i] = rowMeans(as.matrix(L[i]));
R1 = matrix(0,0,1)
for(i in 1:length(L))
R1 = rbind(R1, as.matrix(L[i]));
R = as.matrix(sum(R1==seq(1,7)));
write(R, $3);