blob: f16a2c0f1479673ba8399ec37f8ed4ab0c3ffc1c [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);
eret = as.logical($2);
B = removeEmpty(target=A, margin="rows", empty.return=eret);
C = removeEmpty(target=A, margin="cols", empty.return=eret);
R = matrix(7+nrow(B)+ncol(C), $1, 3);
write(R, $3);