// Copyright (c) CNES 2008 // // This software is part of CelestLab, a CNES toolbox for Scilab // // This software is governed by the CeCILL license under French law and // abiding by the rules of distribution of free software. You can use, // modify and/ or redistribute the software under the terms of the CeCILL // license as circulated by CEA, CNRS and INRIA at the following URL // 'http://www.cecill.info'. // tle3 = [tle1,tle2] // (concatenation) // OK if tle1 or tle2 is empty function [tle3] = %CLtle_c_CLtle(tle1,tle2) CL__tle_checkValid(tle1); CL__tle_checkValid(tle2); [tle3] = CL__tle_create(); names = fieldnames(tle3)'; for name = names tle3(name) = [tle1(name), tle2(name)]; end endfunction