% % @file pde1dp.m % % @brief % % @copyright % Copyright (©) 2021 EPFL (Ecole Polytechnique Fédérale de Lausanne) % SPC (Swiss Plasma Center) % % SPClibs is free software: you can redistribute it and/or modify it under % the terms of the GNU Lesser General Public License as published by the Free % Software Foundation, either version 3 of the License, or (at your option) % any later version. % % SPClibs is distributed in the hope that it will be useful, but WITHOUT ANY % WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS % FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. % % You should have received a copy of the GNU Lesser General Public License % along with this program. If not, see . % % @authors % (in alphabetical order) % @author Trach-Minh Tran % file='pde1dp.h5'; fprintf(1,'NX = %d\n', hdf5read(file,'/NX')); fprintf(1,'NIDBAS = %d\n', hdf5read(file,'/NIDBAS')); fprintf(1,'NGAUSS = %d\n', hdf5read(file,'/NGAUSS')); mata=hdf5read(file,'/mata'); xpts = hdf5read(file, '/rhs/x'); frhs = hdf5read(file, '/rhs/f'); figure plot(xpts,frhs); xlabel('X') ylabel('RHS') grid on