%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% TPWrite: Print a message on the screen. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0002 % TPWrite: Print a message on the screen. 0003 % 0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0005 0006 % Copyright (C) 2012, by Arturo Gil Aparicio 0007 % 0008 % This file is part of ARTE (A Robotics Toolbox for Education). 0009 % 0010 % ARTE is free software: you can redistribute it and/or modify 0011 % it under the terms of the GNU Lesser General Public License as published by 0012 % the Free Software Foundation, either version 3 of the License, or 0013 % (at your option) any later version. 0014 % 0015 % ARTE is distributed in the hope that it will be useful, 0016 % but WITHOUT ANY WARRANTY; without even the implied warranty of 0017 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0018 % GNU Lesser General Public License for more details. 0019 % 0020 % You should have received a copy of the GNU Leser General Public License 0021 % along with ARTE. If not, see <http://www.gnu.org/licenses/>. 0022 function TPWrite(message) 0023 0024 fprintf('\n%s', message); 0025 0026