├── .gitignore ├── Contents.m ├── README.md ├── dat_files ├── atom.dat ├── color.dat ├── formfactor.dat ├── icons.mat ├── isotope.dat ├── magion.dat ├── symmetry.dat └── xrayion.dat ├── dev ├── @spinw │ ├── corespec.m │ ├── couplingtable.m │ ├── fitpow.m │ ├── fourier2.m │ ├── gencouplingold.m │ ├── intmatrix1.m │ ├── meanfield.m │ ├── phonon.m │ ├── phononsym.m │ ├── scga.m │ ├── scga3.m │ ├── structfact2.m │ ├── structfact3.m │ └── tisza.m ├── doctest2.m ├── git.m ├── sw_animate.m ├── sw_counter.m ├── sw_finddim.m ├── sw_finddim2.m ├── sw_finddim3.m ├── sw_idata.m ├── sw_initialize.m ├── sw_intsf.m ├── sw_notify.m ├── sw_orbital.m ├── sw_phonopy.m ├── sw_plotcell.m ├── sw_plotsf.m ├── sw_quadell.m ├── sw_release.m ├── sw_spinmotion.m └── sw_t2g.m ├── docs ├── docgenerator │ ├── docgen.m │ ├── sw_convdef.m │ ├── sw_convhelp.m │ ├── sw_example.m │ ├── sw_genhelp.m │ └── sw_rmspace.m ├── resources │ ├── file.pdf │ └── spinw_cheatsheet.png └── source │ ├── 01_features.md │ ├── 02_introduction.md │ ├── 03_crystal.md │ ├── 04_magstr.md │ ├── 05_hamiltonian.md │ ├── 06_symmetry.md │ ├── 07_spinwave.md │ ├── 08_spec.md │ ├── 09_symbolic.md │ ├── 10_onemorething.md │ ├── 11_contribute.md │ └── index.md ├── external ├── bsxfunsym.m ├── changem.m ├── chol_omp │ ├── chol_omp.cpp │ ├── chol_omp.m │ ├── chol_omp.mexa64 │ ├── chol_omp.mexmaci64 │ └── chol_omp.mexw64 ├── clipboardimage.m ├── colormap │ ├── cm_fireprint.m │ ├── cm_inferno.m │ ├── cm_magma.m │ ├── cm_plasma.m │ ├── cm_tasty.m │ ├── cm_viridis.m │ └── license.txt ├── eig_omp │ ├── eig_omp.cpp │ ├── eig_omp.m │ ├── eig_omp.mexa64 │ ├── eig_omp.mexmaci64 │ └── eig_omp.mexw64 ├── eigorth.m ├── err2str.m ├── findmax.m ├── findmin.m ├── findval.m ├── fprintf0.m ├── gcdv.m ├── gobjects0.m ├── grabxy.m ├── iindex.m ├── invfast.m ├── ksearch.m ├── makecolormap.m ├── mdiagonal.m ├── mmat.m ├── mtimesx │ ├── mtimesx.c │ ├── mtimesx.m │ ├── mtimesx.mexa64 │ ├── mtimesx.mexmaci64 │ ├── mtimesx.mexw64 │ ├── mtimesx_RealTimesReal.c │ └── mtimesx_license.txt ├── munkres.m ├── pmat.m ├── rdir │ ├── license.txt │ └── rdir.m ├── sortmode.m ├── strjoin0.m ├── strjoin_license.txt ├── strsplit0.m ├── strsplit_license.txt ├── strword.m ├── sumargs.m ├── sumn.m ├── sumsym.m ├── sw_cbrewer.m ├── sw_fminsearchbnd.m ├── symbol.m ├── tensordot.m ├── tensordotWM.m ├── uiopen.m └── yaml │ ├── README │ ├── YAML.m │ └── java │ ├── LICENSE-2.0.txt │ ├── snakeyaml-1.18.jar │ └── snakeyaml-1.9.jar ├── install_spinw.m ├── license.txt ├── spinw3_logo.png ├── spinw3_logo_square.png ├── spinw_logo.png ├── swfiles ├── +ndbase │ ├── Contents.m │ ├── corrphon.m │ ├── cplot.m │ ├── getdata.m │ ├── histn.m │ ├── lm.m │ ├── lm2.m │ ├── lm3.m │ ├── pso.m │ ├── simplex.m │ ├── source.m │ └── spaghetti.m ├── +swfunc │ ├── Contents.m │ ├── gauss.m │ ├── gaussfwhm.m │ ├── lorfwhm.m │ ├── pvoigt.m │ └── voigtfwhm.m ├── +swplot │ ├── Contents.m │ ├── activefigure.m │ ├── add.m │ ├── arrow.m │ ├── base.m │ ├── circle.m │ ├── clear.m │ ├── close.m │ ├── color.m │ ├── cylinder.m │ ├── delete.m │ ├── ellipsoid.m │ ├── export.m │ ├── figure.m │ ├── findobj.m │ ├── getdata.m │ ├── icomesh.m │ ├── ishg.m │ ├── legend.m │ ├── line.m │ ├── logo.m │ ├── mouse.m │ ├── patchfacefcn.m │ ├── plot.m │ ├── plotatom.m │ ├── plotbase.m │ ├── plotbond.m │ ├── plotcell.m │ ├── plotchem.m │ ├── plotion.m │ ├── plotmag.m │ ├── polyhedron.m │ ├── raytriangle.m │ ├── setrangegui.m │ ├── subfigure.m │ ├── subplot.m │ ├── text.m │ ├── tooltip.m │ ├── tooltipcallback.m │ ├── tooltipstring.m │ ├── transform.m │ ├── translate.m │ ├── view.m │ └── zoom.m ├── +swsym │ ├── Contents.m │ ├── add.m │ ├── bond.m │ ├── generator.m │ ├── genreduce.m │ ├── isop.m │ ├── operator.m │ ├── oporder.m │ ├── point.m │ ├── position.m │ └── str.m ├── @cif │ ├── cif.m │ └── importcif.m ├── @spinw │ ├── abc.m │ ├── addaniso.m │ ├── addatom.m │ ├── addcoupling.m │ ├── addg.m │ ├── addmatrix.m │ ├── addtwin.m │ ├── anneal.m │ ├── annealloop.m │ ├── atom.m │ ├── basisvector.m │ ├── copy.m │ ├── disp.m │ ├── energy.m │ ├── export.m │ ├── field.m │ ├── fitspec.m │ ├── formula.m │ ├── fourier.m │ ├── fouriersym.m │ ├── gencoupling.m │ ├── genlattice.m │ ├── genmagstr.m │ ├── getmatrix.m │ ├── horace.m │ ├── intmatrix.m │ ├── magstr.m │ ├── magtable.m │ ├── matom.m │ ├── matparser.m │ ├── moment.m │ ├── newcell.m │ ├── nosym.m │ ├── notwin.m │ ├── optmagk.m │ ├── optmagsteep.m │ ├── optmagstr.m │ ├── plot.m │ ├── powspec.m │ ├── private │ │ ├── datastruct.m │ │ └── initfield.m │ ├── quickham.m │ ├── rl.m │ ├── setmatrix.m │ ├── setunit.m │ ├── spinw.m │ ├── spinwave.m │ ├── spinwavesym.m │ ├── struct.m │ ├── structfact.m │ ├── symbolic.m │ ├── symmetry.m │ ├── symop.m │ ├── table.m │ ├── temperature.m │ ├── twinq.m │ ├── unitcell.m │ ├── validate.m │ └── version.m ├── @swpref │ ├── export.m │ ├── import.m │ ├── private │ │ └── datastruct.m │ └── swpref.m ├── Contents.m ├── functionSignatures.json ├── gm_planar.m ├── gm_planard.m ├── gm_spherical3d.m ├── gm_spherical3dd.m ├── sw_atomdata.m ├── sw_basismat.m ├── sw_bonddim.m ├── sw_bose.m ├── sw_cartesian.m ├── sw_cff.m ├── sw_converter.m ├── sw_econtract.m ├── sw_egrid.m ├── sw_extendlattice.m ├── sw_filelist.m ├── sw_freemem.m ├── sw_fstat.m ├── sw_fsub.m ├── sw_import.m ├── sw_instrument.m ├── sw_magdomain.m ├── sw_markdown.m ├── sw_mattype.m ├── sw_mex.m ├── sw_mff.m ├── sw_mirror.m ├── sw_model.m ├── sw_multicolor.m ├── sw_nb.m ├── sw_neutron.m ├── sw_nvect.m ├── sw_omegasum.m ├── sw_parstr.m ├── sw_plotspec.m ├── sw_qgrid.m ├── sw_qscan.m ├── sw_readparam.m ├── sw_readspec.m ├── sw_readtable.m ├── sw_res.m ├── sw_resconv.m ├── sw_rootdir.m ├── sw_rot.m ├── sw_rotmat.m ├── sw_rotmatd.m ├── sw_timeit.m ├── sw_tofres.m ├── sw_uniquetol.m ├── sw_update.m ├── sw_version.m ├── sw_xray.m ├── swdoc.m ├── swhelp.m └── usefull │ ├── sw_always.m │ ├── sw_createpcr.m │ ├── sw_sub1.m │ └── sw_surf.m ├── test ├── fourier_test.m ├── scga_test.m ├── scga_test_kag.m ├── sw_genatpos2.m ├── sw_symtest.m ├── sw_test.m ├── sw_test_sw1.m ├── sw_test_sw2.m ├── sw_test_sym1.m ├── sw_test_sym2.m └── sw_test_sym3.m └── tutorials ├── help ├── Atomdat.m ├── Atomdat │ ├── Atomdat.txt │ └── gen_Atomdat.html ├── Bond.m ├── Bond │ ├── Bond.txt │ └── gen_Bond.html ├── Coordinatesystem.m ├── Coordinatesystem │ ├── Coordinatesystem.txt │ └── gen_Coordinatesystem.html ├── Documentation.m ├── Documentation │ ├── Documentation.txt │ └── gen_Documentation.html ├── Exchangecoupling.m ├── Exchangecoupling │ ├── Exchangecoupling.txt │ ├── gen_Exchangecoupling.html │ └── gen_Exchangecoupling_01.png ├── GenerateFigures.m ├── Iondat.m ├── Iondat │ ├── Iondat.txt │ └── gen_Iondat.html ├── Keywords.m ├── Keywords │ ├── Keywords.txt │ └── gen_Keywords.html ├── Powderspectrum.m ├── Swclass.m ├── Swclass │ ├── Swclass.txt │ ├── export_fig_out.png │ ├── fig1.png │ ├── fig_test1.png │ ├── gen_Swclass.html │ ├── gen_Swclass_01.png │ └── painter.png ├── Swproperties.m ├── Swproperties │ ├── Swproperties.txt │ └── gen_Swproperties.html ├── gendoc_PSI.m ├── links.txt ├── links_save.txt ├── noCode.xsl └── swclass1.png ├── publish ├── LuVO3_fitted_modes.txt ├── publish_PSI.m ├── tutorial1.m ├── tutorial1 │ ├── tutorial1.html │ ├── tutorial1.png │ ├── tutorial1.txt │ ├── tutorial1_01.png │ ├── tutorial1_02.png │ ├── tutorial1_03.png │ ├── tutorial1_04.png │ └── tutorial1_05.png ├── tutorial10.m ├── tutorial10 │ ├── tutorial10.html │ ├── tutorial10.png │ ├── tutorial10.txt │ ├── tutorial10_01.png │ ├── tutorial10_02.png │ ├── tutorial10_03.png │ └── tutorial10_04.png ├── tutorial11.m ├── tutorial11 │ ├── tutorial11.html │ ├── tutorial11.png │ ├── tutorial11.txt │ ├── tutorial11_01.png │ └── tutorial11_02.png ├── tutorial12.m ├── tutorial12 │ ├── tutorial12.html │ ├── tutorial12.png │ ├── tutorial12.txt │ ├── tutorial12_01.png │ ├── tutorial12_02.png │ ├── tutorial12_03.png │ ├── tutorial12_04.png │ ├── tutorial12_05.png │ ├── tutorial12_06.png │ └── tutorial12_07.png ├── tutorial13.m ├── tutorial13 │ ├── tutorial13.html │ ├── tutorial13.png │ ├── tutorial13.txt │ ├── tutorial13_01.png │ ├── tutorial13_02.png │ ├── tutorial13_03.png │ ├── tutorial13_04.png │ └── tutorial13_05.png ├── tutorial14.m ├── tutorial14 │ ├── tutorial14.html │ ├── tutorial14.png │ ├── tutorial14.txt │ ├── tutorial14_01.png │ ├── tutorial14_02.png │ └── tutorial14_03.png ├── tutorial15.m ├── tutorial15 │ ├── tutorial15.html │ ├── tutorial15.png │ ├── tutorial15.txt │ ├── tutorial15_01.png │ ├── tutorial15_02.png │ ├── tutorial15_03.png │ ├── tutorial15_04.png │ └── tutorial15_05.png ├── tutorial16.m ├── tutorial16 │ ├── tutorial16.html │ ├── tutorial16.png │ ├── tutorial16.txt │ ├── tutorial16_01.png │ ├── tutorial16_02.png │ ├── tutorial16_03.png │ ├── tutorial16_04.png │ ├── tutorial16_05.png │ ├── tutorial16_06.png │ ├── tutorial16_07.png │ ├── tutorial16_08.png │ ├── tutorial16_09.png │ ├── tutorial16_10.png │ └── tutorial16_11.png ├── tutorial17.m ├── tutorial17 │ ├── tutorial17.html │ └── tutorial17.txt ├── tutorial18.m ├── tutorial18 │ ├── tutorial18.html │ ├── tutorial18.png │ ├── tutorial18.txt │ ├── tutorial18_01.png │ ├── tutorial18_02.png │ ├── tutorial18_03.png │ ├── tutorial18_04.png │ └── tutorial18_05.png ├── tutorial19.m ├── tutorial19 │ ├── tutorial19.html │ ├── tutorial19.png │ ├── tutorial19.txt │ ├── tutorial19_01.png │ ├── tutorial19_02.png │ ├── tutorial19_03.png │ ├── tutorial19_04.png │ └── tutorial19_05.png ├── tutorial2.m ├── tutorial2 │ ├── tutorial2.html │ ├── tutorial2.png │ ├── tutorial2.txt │ ├── tutorial2_01.png │ ├── tutorial2_02.png │ ├── tutorial2_03.png │ └── tutorial2_04.png ├── tutorial20.m ├── tutorial20 │ ├── tutorial20.html │ ├── tutorial20.png │ ├── tutorial20.txt │ ├── tutorial20_01.png │ ├── tutorial20_02.png │ ├── tutorial20_03.png │ └── tutorial20_04.png ├── tutorial21.m ├── tutorial21 │ ├── tutorial21.html │ ├── tutorial21.png │ ├── tutorial21.txt │ ├── tutorial21_01.png │ ├── tutorial21_02.png │ ├── tutorial21_03.png │ └── tutorial21_04.png ├── tutorial22 │ ├── tutorial22.html │ └── tutorial22.txt ├── tutorial23 │ ├── tutorial23.html │ └── tutorial23.txt ├── tutorial26 │ ├── tutorial26.html │ └── tutorial26.txt ├── tutorial28 │ ├── tutorial28.html │ ├── tutorial28.png │ ├── tutorial28.txt │ ├── tutorial28_01.png │ ├── tutorial28_02.png │ ├── tutorial28_03.png │ └── tutorial28_04.png ├── tutorial29 │ ├── tutorial29.html │ └── tutorial29.txt ├── tutorial3.m ├── tutorial3 │ ├── tutorial3.html │ ├── tutorial3.png │ ├── tutorial3.txt │ ├── tutorial3_01.png │ ├── tutorial3_02.png │ ├── tutorial3_03.png │ ├── tutorial3_04.png │ └── tutorial3_05.png ├── tutorial30.m ├── tutorial30 │ ├── tutorial30.html │ ├── tutorial30.png │ ├── tutorial30.txt │ ├── tutorial30_01.png │ ├── tutorial30_02.png │ ├── tutorial30_03.png │ ├── tutorial30_04.png │ ├── tutorial30_05.png │ ├── tutorial30_06.png │ ├── tutorial30_07.png │ └── tutorial30_08.png ├── tutorial31.m ├── tutorial31 │ ├── tutorial31.html │ ├── tutorial31.png │ ├── tutorial31.txt │ ├── tutorial31_01.png │ ├── tutorial31_02.png │ ├── tutorial31_03.png │ ├── tutorial31_04.png │ ├── tutorial31_05.png │ ├── tutorial31_06.png │ ├── tutorial31_07.png │ ├── tutorial31_08.png │ ├── tutorial31_09.png │ ├── tutorial31_10.png │ ├── tutorial31_11.png │ └── tutorial31_12.png ├── tutorial32.m ├── tutorial32 │ ├── tutorial32.html │ ├── tutorial32.png │ ├── tutorial32.txt │ ├── tutorial32_01.png │ ├── tutorial32_02.png │ ├── tutorial32_03.png │ ├── tutorial32_04.png │ ├── tutorial32_05.png │ ├── tutorial32_06.png │ └── tutorial32_07.png ├── tutorial33.m ├── tutorial33 │ ├── tutorial33.html │ ├── tutorial33.png │ ├── tutorial33.txt │ ├── tutorial33_01.png │ ├── tutorial33_02.png │ └── tutorial33_03.png ├── tutorial34.m ├── tutorial34 │ ├── tutorial34.html │ ├── tutorial34.png │ ├── tutorial34.txt │ ├── tutorial34_01.png │ ├── tutorial34_02.png │ └── tutorial34_03.png ├── tutorial35.m ├── tutorial35 │ ├── tutorial35.html │ ├── tutorial35.png │ ├── tutorial35.txt │ ├── tutorial35_01.png │ ├── tutorial35_02.png │ ├── tutorial35_03.png │ ├── tutorial35_04.png │ └── tutorial35_05.png ├── tutorial36.m ├── tutorial37.m ├── tutorial38.m ├── tutorial38 │ ├── tutorial38.html │ ├── tutorial38.png │ ├── tutorial38.txt │ ├── tutorial38_01.png │ ├── tutorial38_02.png │ ├── tutorial38_03.png │ └── tutorial38_04.png ├── tutorial4.m ├── tutorial4 │ ├── tutorial4.html │ ├── tutorial4.png │ ├── tutorial4.txt │ ├── tutorial4_01.png │ ├── tutorial4_02.png │ ├── tutorial4_03.png │ └── tutorial4_04.png ├── tutorial5.m ├── tutorial5 │ ├── tutorial5.html │ ├── tutorial5.png │ ├── tutorial5.txt │ ├── tutorial5_01.png │ ├── tutorial5_02.png │ ├── tutorial5_03.png │ ├── tutorial5_04.png │ └── tutorial5_05.png ├── tutorial6.m ├── tutorial6 │ ├── tutorial6.html │ ├── tutorial6.png │ ├── tutorial6.txt │ ├── tutorial6_01.png │ ├── tutorial6_02.png │ ├── tutorial6_03.png │ ├── tutorial6_04.png │ └── tutorial6_05.png ├── tutorial7.m ├── tutorial7 │ ├── tutorial7.html │ ├── tutorial7.png │ ├── tutorial7.txt │ ├── tutorial7_01.png │ ├── tutorial7_02.png │ ├── tutorial7_03.png │ ├── tutorial7_04.png │ └── tutorial7_05.png ├── tutorial8.m ├── tutorial8 │ ├── tutorial8.html │ ├── tutorial8.png │ ├── tutorial8.txt │ ├── tutorial8_01.png │ ├── tutorial8_02.png │ ├── tutorial8_03.png │ ├── tutorial8_04.png │ ├── tutorial8_05.png │ ├── tutorial8_06.png │ ├── tutorial8_07.png │ └── tutorial8_08.png ├── tutorial9.m ├── tutorial9 │ ├── tutorial9.html │ ├── tutorial9.png │ ├── tutorial9.txt │ ├── tutorial9_01.png │ ├── tutorial9_02.png │ ├── tutorial9_03.png │ ├── tutorial9_04.png │ └── tutorial9_05.png └── tutorials.txt └── tutorial ├── Ba3NbFe3Si2O14_chirality.m ├── CuV2O7.m ├── LuMnO3.cif ├── LuMnO3_spectrum.m ├── YIG.m ├── alpha-Cu2V2O7.cif ├── aniso_rotation.m ├── anneal_tutorial.m ├── ca2ruo4.m ├── damping_example.m ├── fit_example.m ├── helical_chain_infield.m ├── inpurity.m ├── tutorial22.m ├── tutorial23.m ├── tutorial26.m ├── tutorial28.m └── tutorial29.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/.gitignore -------------------------------------------------------------------------------- /Contents.m: -------------------------------------------------------------------------------- 1 | % SpinW 2 | % Version 4.0 (unreleased) 29-Nov-2017 3 | % 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/README.md -------------------------------------------------------------------------------- /dat_files/atom.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dat_files/atom.dat -------------------------------------------------------------------------------- /dat_files/color.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dat_files/color.dat -------------------------------------------------------------------------------- /dat_files/formfactor.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dat_files/formfactor.dat -------------------------------------------------------------------------------- /dat_files/icons.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dat_files/icons.mat -------------------------------------------------------------------------------- /dat_files/isotope.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dat_files/isotope.dat -------------------------------------------------------------------------------- /dat_files/magion.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dat_files/magion.dat -------------------------------------------------------------------------------- /dat_files/symmetry.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dat_files/symmetry.dat -------------------------------------------------------------------------------- /dat_files/xrayion.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dat_files/xrayion.dat -------------------------------------------------------------------------------- /dev/@spinw/corespec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/corespec.m -------------------------------------------------------------------------------- /dev/@spinw/couplingtable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/couplingtable.m -------------------------------------------------------------------------------- /dev/@spinw/fitpow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/fitpow.m -------------------------------------------------------------------------------- /dev/@spinw/fourier2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/fourier2.m -------------------------------------------------------------------------------- /dev/@spinw/gencouplingold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/gencouplingold.m -------------------------------------------------------------------------------- /dev/@spinw/intmatrix1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/intmatrix1.m -------------------------------------------------------------------------------- /dev/@spinw/meanfield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/meanfield.m -------------------------------------------------------------------------------- /dev/@spinw/phonon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/phonon.m -------------------------------------------------------------------------------- /dev/@spinw/phononsym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/phononsym.m -------------------------------------------------------------------------------- /dev/@spinw/scga.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/scga.m -------------------------------------------------------------------------------- /dev/@spinw/scga3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/scga3.m -------------------------------------------------------------------------------- /dev/@spinw/structfact2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/structfact2.m -------------------------------------------------------------------------------- /dev/@spinw/structfact3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/structfact3.m -------------------------------------------------------------------------------- /dev/@spinw/tisza.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/@spinw/tisza.m -------------------------------------------------------------------------------- /dev/doctest2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/doctest2.m -------------------------------------------------------------------------------- /dev/git.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/git.m -------------------------------------------------------------------------------- /dev/sw_animate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_animate.m -------------------------------------------------------------------------------- /dev/sw_counter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_counter.m -------------------------------------------------------------------------------- /dev/sw_finddim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_finddim.m -------------------------------------------------------------------------------- /dev/sw_finddim2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_finddim2.m -------------------------------------------------------------------------------- /dev/sw_finddim3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_finddim3.m -------------------------------------------------------------------------------- /dev/sw_idata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_idata.m -------------------------------------------------------------------------------- /dev/sw_initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_initialize.m -------------------------------------------------------------------------------- /dev/sw_intsf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_intsf.m -------------------------------------------------------------------------------- /dev/sw_notify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_notify.m -------------------------------------------------------------------------------- /dev/sw_orbital.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_orbital.m -------------------------------------------------------------------------------- /dev/sw_phonopy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_phonopy.m -------------------------------------------------------------------------------- /dev/sw_plotcell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_plotcell.m -------------------------------------------------------------------------------- /dev/sw_plotsf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_plotsf.m -------------------------------------------------------------------------------- /dev/sw_quadell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_quadell.m -------------------------------------------------------------------------------- /dev/sw_release.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_release.m -------------------------------------------------------------------------------- /dev/sw_spinmotion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_spinmotion.m -------------------------------------------------------------------------------- /dev/sw_t2g.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/dev/sw_t2g.m -------------------------------------------------------------------------------- /docs/docgenerator/docgen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/docgenerator/docgen.m -------------------------------------------------------------------------------- /docs/docgenerator/sw_convdef.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/docgenerator/sw_convdef.m -------------------------------------------------------------------------------- /docs/docgenerator/sw_convhelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/docgenerator/sw_convhelp.m -------------------------------------------------------------------------------- /docs/docgenerator/sw_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/docgenerator/sw_example.m -------------------------------------------------------------------------------- /docs/docgenerator/sw_genhelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/docgenerator/sw_genhelp.m -------------------------------------------------------------------------------- /docs/docgenerator/sw_rmspace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/docgenerator/sw_rmspace.m -------------------------------------------------------------------------------- /docs/resources/file.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/resources/spinw_cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/resources/spinw_cheatsheet.png -------------------------------------------------------------------------------- /docs/source/01_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/01_features.md -------------------------------------------------------------------------------- /docs/source/02_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/02_introduction.md -------------------------------------------------------------------------------- /docs/source/03_crystal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/03_crystal.md -------------------------------------------------------------------------------- /docs/source/04_magstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/04_magstr.md -------------------------------------------------------------------------------- /docs/source/05_hamiltonian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/05_hamiltonian.md -------------------------------------------------------------------------------- /docs/source/06_symmetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/06_symmetry.md -------------------------------------------------------------------------------- /docs/source/07_spinwave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/07_spinwave.md -------------------------------------------------------------------------------- /docs/source/08_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/08_spec.md -------------------------------------------------------------------------------- /docs/source/09_symbolic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/09_symbolic.md -------------------------------------------------------------------------------- /docs/source/10_onemorething.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/10_onemorething.md -------------------------------------------------------------------------------- /docs/source/11_contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/11_contribute.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /external/bsxfunsym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/bsxfunsym.m -------------------------------------------------------------------------------- /external/changem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/changem.m -------------------------------------------------------------------------------- /external/chol_omp/chol_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/chol_omp/chol_omp.cpp -------------------------------------------------------------------------------- /external/chol_omp/chol_omp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/chol_omp/chol_omp.m -------------------------------------------------------------------------------- /external/chol_omp/chol_omp.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/chol_omp/chol_omp.mexa64 -------------------------------------------------------------------------------- /external/chol_omp/chol_omp.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/chol_omp/chol_omp.mexmaci64 -------------------------------------------------------------------------------- /external/chol_omp/chol_omp.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/chol_omp/chol_omp.mexw64 -------------------------------------------------------------------------------- /external/clipboardimage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/clipboardimage.m -------------------------------------------------------------------------------- /external/colormap/cm_fireprint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/colormap/cm_fireprint.m -------------------------------------------------------------------------------- /external/colormap/cm_inferno.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/colormap/cm_inferno.m -------------------------------------------------------------------------------- /external/colormap/cm_magma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/colormap/cm_magma.m -------------------------------------------------------------------------------- /external/colormap/cm_plasma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/colormap/cm_plasma.m -------------------------------------------------------------------------------- /external/colormap/cm_tasty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/colormap/cm_tasty.m -------------------------------------------------------------------------------- /external/colormap/cm_viridis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/colormap/cm_viridis.m -------------------------------------------------------------------------------- /external/colormap/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/colormap/license.txt -------------------------------------------------------------------------------- /external/eig_omp/eig_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/eig_omp/eig_omp.cpp -------------------------------------------------------------------------------- /external/eig_omp/eig_omp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/eig_omp/eig_omp.m -------------------------------------------------------------------------------- /external/eig_omp/eig_omp.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/eig_omp/eig_omp.mexa64 -------------------------------------------------------------------------------- /external/eig_omp/eig_omp.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/eig_omp/eig_omp.mexmaci64 -------------------------------------------------------------------------------- /external/eig_omp/eig_omp.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/eig_omp/eig_omp.mexw64 -------------------------------------------------------------------------------- /external/eigorth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/eigorth.m -------------------------------------------------------------------------------- /external/err2str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/err2str.m -------------------------------------------------------------------------------- /external/findmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/findmax.m -------------------------------------------------------------------------------- /external/findmin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/findmin.m -------------------------------------------------------------------------------- /external/findval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/findval.m -------------------------------------------------------------------------------- /external/fprintf0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/fprintf0.m -------------------------------------------------------------------------------- /external/gcdv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/gcdv.m -------------------------------------------------------------------------------- /external/gobjects0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/gobjects0.m -------------------------------------------------------------------------------- /external/grabxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/grabxy.m -------------------------------------------------------------------------------- /external/iindex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/iindex.m -------------------------------------------------------------------------------- /external/invfast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/invfast.m -------------------------------------------------------------------------------- /external/ksearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/ksearch.m -------------------------------------------------------------------------------- /external/makecolormap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/makecolormap.m -------------------------------------------------------------------------------- /external/mdiagonal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mdiagonal.m -------------------------------------------------------------------------------- /external/mmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mmat.m -------------------------------------------------------------------------------- /external/mtimesx/mtimesx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mtimesx/mtimesx.c -------------------------------------------------------------------------------- /external/mtimesx/mtimesx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mtimesx/mtimesx.m -------------------------------------------------------------------------------- /external/mtimesx/mtimesx.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mtimesx/mtimesx.mexa64 -------------------------------------------------------------------------------- /external/mtimesx/mtimesx.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mtimesx/mtimesx.mexmaci64 -------------------------------------------------------------------------------- /external/mtimesx/mtimesx.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mtimesx/mtimesx.mexw64 -------------------------------------------------------------------------------- /external/mtimesx/mtimesx_RealTimesReal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mtimesx/mtimesx_RealTimesReal.c -------------------------------------------------------------------------------- /external/mtimesx/mtimesx_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/mtimesx/mtimesx_license.txt -------------------------------------------------------------------------------- /external/munkres.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/munkres.m -------------------------------------------------------------------------------- /external/pmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/pmat.m -------------------------------------------------------------------------------- /external/rdir/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/rdir/license.txt -------------------------------------------------------------------------------- /external/rdir/rdir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/rdir/rdir.m -------------------------------------------------------------------------------- /external/sortmode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/sortmode.m -------------------------------------------------------------------------------- /external/strjoin0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/strjoin0.m -------------------------------------------------------------------------------- /external/strjoin_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/strjoin_license.txt -------------------------------------------------------------------------------- /external/strsplit0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/strsplit0.m -------------------------------------------------------------------------------- /external/strsplit_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/strsplit_license.txt -------------------------------------------------------------------------------- /external/strword.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/strword.m -------------------------------------------------------------------------------- /external/sumargs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/sumargs.m -------------------------------------------------------------------------------- /external/sumn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/sumn.m -------------------------------------------------------------------------------- /external/sumsym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/sumsym.m -------------------------------------------------------------------------------- /external/sw_cbrewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/sw_cbrewer.m -------------------------------------------------------------------------------- /external/sw_fminsearchbnd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/sw_fminsearchbnd.m -------------------------------------------------------------------------------- /external/symbol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/symbol.m -------------------------------------------------------------------------------- /external/tensordot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/tensordot.m -------------------------------------------------------------------------------- /external/tensordotWM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/tensordotWM.m -------------------------------------------------------------------------------- /external/uiopen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/uiopen.m -------------------------------------------------------------------------------- /external/yaml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/yaml/README -------------------------------------------------------------------------------- /external/yaml/YAML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/yaml/YAML.m -------------------------------------------------------------------------------- /external/yaml/java/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/yaml/java/LICENSE-2.0.txt -------------------------------------------------------------------------------- /external/yaml/java/snakeyaml-1.18.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/yaml/java/snakeyaml-1.18.jar -------------------------------------------------------------------------------- /external/yaml/java/snakeyaml-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/external/yaml/java/snakeyaml-1.9.jar -------------------------------------------------------------------------------- /install_spinw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/install_spinw.m -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/license.txt -------------------------------------------------------------------------------- /spinw3_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/spinw3_logo.png -------------------------------------------------------------------------------- /spinw3_logo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/spinw3_logo_square.png -------------------------------------------------------------------------------- /spinw_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/spinw_logo.png -------------------------------------------------------------------------------- /swfiles/+ndbase/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/Contents.m -------------------------------------------------------------------------------- /swfiles/+ndbase/corrphon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/corrphon.m -------------------------------------------------------------------------------- /swfiles/+ndbase/cplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/cplot.m -------------------------------------------------------------------------------- /swfiles/+ndbase/getdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/getdata.m -------------------------------------------------------------------------------- /swfiles/+ndbase/histn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/histn.m -------------------------------------------------------------------------------- /swfiles/+ndbase/lm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/lm.m -------------------------------------------------------------------------------- /swfiles/+ndbase/lm2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/lm2.m -------------------------------------------------------------------------------- /swfiles/+ndbase/lm3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/lm3.m -------------------------------------------------------------------------------- /swfiles/+ndbase/pso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/pso.m -------------------------------------------------------------------------------- /swfiles/+ndbase/simplex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/simplex.m -------------------------------------------------------------------------------- /swfiles/+ndbase/source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/source.m -------------------------------------------------------------------------------- /swfiles/+ndbase/spaghetti.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+ndbase/spaghetti.m -------------------------------------------------------------------------------- /swfiles/+swfunc/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swfunc/Contents.m -------------------------------------------------------------------------------- /swfiles/+swfunc/gauss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swfunc/gauss.m -------------------------------------------------------------------------------- /swfiles/+swfunc/gaussfwhm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swfunc/gaussfwhm.m -------------------------------------------------------------------------------- /swfiles/+swfunc/lorfwhm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swfunc/lorfwhm.m -------------------------------------------------------------------------------- /swfiles/+swfunc/pvoigt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swfunc/pvoigt.m -------------------------------------------------------------------------------- /swfiles/+swfunc/voigtfwhm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swfunc/voigtfwhm.m -------------------------------------------------------------------------------- /swfiles/+swplot/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/Contents.m -------------------------------------------------------------------------------- /swfiles/+swplot/activefigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/activefigure.m -------------------------------------------------------------------------------- /swfiles/+swplot/add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/add.m -------------------------------------------------------------------------------- /swfiles/+swplot/arrow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/arrow.m -------------------------------------------------------------------------------- /swfiles/+swplot/base.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/base.m -------------------------------------------------------------------------------- /swfiles/+swplot/circle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/circle.m -------------------------------------------------------------------------------- /swfiles/+swplot/clear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/clear.m -------------------------------------------------------------------------------- /swfiles/+swplot/close.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/close.m -------------------------------------------------------------------------------- /swfiles/+swplot/color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/color.m -------------------------------------------------------------------------------- /swfiles/+swplot/cylinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/cylinder.m -------------------------------------------------------------------------------- /swfiles/+swplot/delete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/delete.m -------------------------------------------------------------------------------- /swfiles/+swplot/ellipsoid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/ellipsoid.m -------------------------------------------------------------------------------- /swfiles/+swplot/export.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/export.m -------------------------------------------------------------------------------- /swfiles/+swplot/figure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/figure.m -------------------------------------------------------------------------------- /swfiles/+swplot/findobj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/findobj.m -------------------------------------------------------------------------------- /swfiles/+swplot/getdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/getdata.m -------------------------------------------------------------------------------- /swfiles/+swplot/icomesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/icomesh.m -------------------------------------------------------------------------------- /swfiles/+swplot/ishg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/ishg.m -------------------------------------------------------------------------------- /swfiles/+swplot/legend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/legend.m -------------------------------------------------------------------------------- /swfiles/+swplot/line.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/line.m -------------------------------------------------------------------------------- /swfiles/+swplot/logo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/logo.m -------------------------------------------------------------------------------- /swfiles/+swplot/mouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/mouse.m -------------------------------------------------------------------------------- /swfiles/+swplot/patchfacefcn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/patchfacefcn.m -------------------------------------------------------------------------------- /swfiles/+swplot/plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/plot.m -------------------------------------------------------------------------------- /swfiles/+swplot/plotatom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/plotatom.m -------------------------------------------------------------------------------- /swfiles/+swplot/plotbase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/plotbase.m -------------------------------------------------------------------------------- /swfiles/+swplot/plotbond.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/plotbond.m -------------------------------------------------------------------------------- /swfiles/+swplot/plotcell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/plotcell.m -------------------------------------------------------------------------------- /swfiles/+swplot/plotchem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/plotchem.m -------------------------------------------------------------------------------- /swfiles/+swplot/plotion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/plotion.m -------------------------------------------------------------------------------- /swfiles/+swplot/plotmag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/plotmag.m -------------------------------------------------------------------------------- /swfiles/+swplot/polyhedron.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/polyhedron.m -------------------------------------------------------------------------------- /swfiles/+swplot/raytriangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/raytriangle.m -------------------------------------------------------------------------------- /swfiles/+swplot/setrangegui.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/setrangegui.m -------------------------------------------------------------------------------- /swfiles/+swplot/subfigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/subfigure.m -------------------------------------------------------------------------------- /swfiles/+swplot/subplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/subplot.m -------------------------------------------------------------------------------- /swfiles/+swplot/text.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/text.m -------------------------------------------------------------------------------- /swfiles/+swplot/tooltip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/tooltip.m -------------------------------------------------------------------------------- /swfiles/+swplot/tooltipcallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/tooltipcallback.m -------------------------------------------------------------------------------- /swfiles/+swplot/tooltipstring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/tooltipstring.m -------------------------------------------------------------------------------- /swfiles/+swplot/transform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/transform.m -------------------------------------------------------------------------------- /swfiles/+swplot/translate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/translate.m -------------------------------------------------------------------------------- /swfiles/+swplot/view.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/view.m -------------------------------------------------------------------------------- /swfiles/+swplot/zoom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swplot/zoom.m -------------------------------------------------------------------------------- /swfiles/+swsym/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/Contents.m -------------------------------------------------------------------------------- /swfiles/+swsym/add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/add.m -------------------------------------------------------------------------------- /swfiles/+swsym/bond.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/bond.m -------------------------------------------------------------------------------- /swfiles/+swsym/generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/generator.m -------------------------------------------------------------------------------- /swfiles/+swsym/genreduce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/genreduce.m -------------------------------------------------------------------------------- /swfiles/+swsym/isop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/isop.m -------------------------------------------------------------------------------- /swfiles/+swsym/operator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/operator.m -------------------------------------------------------------------------------- /swfiles/+swsym/oporder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/oporder.m -------------------------------------------------------------------------------- /swfiles/+swsym/point.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/point.m -------------------------------------------------------------------------------- /swfiles/+swsym/position.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/position.m -------------------------------------------------------------------------------- /swfiles/+swsym/str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/+swsym/str.m -------------------------------------------------------------------------------- /swfiles/@cif/cif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@cif/cif.m -------------------------------------------------------------------------------- /swfiles/@cif/importcif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@cif/importcif.m -------------------------------------------------------------------------------- /swfiles/@spinw/abc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/abc.m -------------------------------------------------------------------------------- /swfiles/@spinw/addaniso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/addaniso.m -------------------------------------------------------------------------------- /swfiles/@spinw/addatom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/addatom.m -------------------------------------------------------------------------------- /swfiles/@spinw/addcoupling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/addcoupling.m -------------------------------------------------------------------------------- /swfiles/@spinw/addg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/addg.m -------------------------------------------------------------------------------- /swfiles/@spinw/addmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/addmatrix.m -------------------------------------------------------------------------------- /swfiles/@spinw/addtwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/addtwin.m -------------------------------------------------------------------------------- /swfiles/@spinw/anneal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/anneal.m -------------------------------------------------------------------------------- /swfiles/@spinw/annealloop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/annealloop.m -------------------------------------------------------------------------------- /swfiles/@spinw/atom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/atom.m -------------------------------------------------------------------------------- /swfiles/@spinw/basisvector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/basisvector.m -------------------------------------------------------------------------------- /swfiles/@spinw/copy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/copy.m -------------------------------------------------------------------------------- /swfiles/@spinw/disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/disp.m -------------------------------------------------------------------------------- /swfiles/@spinw/energy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/energy.m -------------------------------------------------------------------------------- /swfiles/@spinw/export.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/export.m -------------------------------------------------------------------------------- /swfiles/@spinw/field.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/field.m -------------------------------------------------------------------------------- /swfiles/@spinw/fitspec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/fitspec.m -------------------------------------------------------------------------------- /swfiles/@spinw/formula.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/formula.m -------------------------------------------------------------------------------- /swfiles/@spinw/fourier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/fourier.m -------------------------------------------------------------------------------- /swfiles/@spinw/fouriersym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/fouriersym.m -------------------------------------------------------------------------------- /swfiles/@spinw/gencoupling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/gencoupling.m -------------------------------------------------------------------------------- /swfiles/@spinw/genlattice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/genlattice.m -------------------------------------------------------------------------------- /swfiles/@spinw/genmagstr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/genmagstr.m -------------------------------------------------------------------------------- /swfiles/@spinw/getmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/getmatrix.m -------------------------------------------------------------------------------- /swfiles/@spinw/horace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/horace.m -------------------------------------------------------------------------------- /swfiles/@spinw/intmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/intmatrix.m -------------------------------------------------------------------------------- /swfiles/@spinw/magstr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/magstr.m -------------------------------------------------------------------------------- /swfiles/@spinw/magtable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/magtable.m -------------------------------------------------------------------------------- /swfiles/@spinw/matom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/matom.m -------------------------------------------------------------------------------- /swfiles/@spinw/matparser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/matparser.m -------------------------------------------------------------------------------- /swfiles/@spinw/moment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/moment.m -------------------------------------------------------------------------------- /swfiles/@spinw/newcell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/newcell.m -------------------------------------------------------------------------------- /swfiles/@spinw/nosym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/nosym.m -------------------------------------------------------------------------------- /swfiles/@spinw/notwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/notwin.m -------------------------------------------------------------------------------- /swfiles/@spinw/optmagk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/optmagk.m -------------------------------------------------------------------------------- /swfiles/@spinw/optmagsteep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/optmagsteep.m -------------------------------------------------------------------------------- /swfiles/@spinw/optmagstr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/optmagstr.m -------------------------------------------------------------------------------- /swfiles/@spinw/plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/plot.m -------------------------------------------------------------------------------- /swfiles/@spinw/powspec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/powspec.m -------------------------------------------------------------------------------- /swfiles/@spinw/private/datastruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/private/datastruct.m -------------------------------------------------------------------------------- /swfiles/@spinw/private/initfield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/private/initfield.m -------------------------------------------------------------------------------- /swfiles/@spinw/quickham.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/quickham.m -------------------------------------------------------------------------------- /swfiles/@spinw/rl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/rl.m -------------------------------------------------------------------------------- /swfiles/@spinw/setmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/setmatrix.m -------------------------------------------------------------------------------- /swfiles/@spinw/setunit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/setunit.m -------------------------------------------------------------------------------- /swfiles/@spinw/spinw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/spinw.m -------------------------------------------------------------------------------- /swfiles/@spinw/spinwave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/spinwave.m -------------------------------------------------------------------------------- /swfiles/@spinw/spinwavesym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/spinwavesym.m -------------------------------------------------------------------------------- /swfiles/@spinw/struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/struct.m -------------------------------------------------------------------------------- /swfiles/@spinw/structfact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/structfact.m -------------------------------------------------------------------------------- /swfiles/@spinw/symbolic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/symbolic.m -------------------------------------------------------------------------------- /swfiles/@spinw/symmetry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/symmetry.m -------------------------------------------------------------------------------- /swfiles/@spinw/symop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/symop.m -------------------------------------------------------------------------------- /swfiles/@spinw/table.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/table.m -------------------------------------------------------------------------------- /swfiles/@spinw/temperature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/temperature.m -------------------------------------------------------------------------------- /swfiles/@spinw/twinq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/twinq.m -------------------------------------------------------------------------------- /swfiles/@spinw/unitcell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/unitcell.m -------------------------------------------------------------------------------- /swfiles/@spinw/validate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/validate.m -------------------------------------------------------------------------------- /swfiles/@spinw/version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@spinw/version.m -------------------------------------------------------------------------------- /swfiles/@swpref/export.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@swpref/export.m -------------------------------------------------------------------------------- /swfiles/@swpref/import.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@swpref/import.m -------------------------------------------------------------------------------- /swfiles/@swpref/private/datastruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@swpref/private/datastruct.m -------------------------------------------------------------------------------- /swfiles/@swpref/swpref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/@swpref/swpref.m -------------------------------------------------------------------------------- /swfiles/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/Contents.m -------------------------------------------------------------------------------- /swfiles/functionSignatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/functionSignatures.json -------------------------------------------------------------------------------- /swfiles/gm_planar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/gm_planar.m -------------------------------------------------------------------------------- /swfiles/gm_planard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/gm_planard.m -------------------------------------------------------------------------------- /swfiles/gm_spherical3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/gm_spherical3d.m -------------------------------------------------------------------------------- /swfiles/gm_spherical3dd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/gm_spherical3dd.m -------------------------------------------------------------------------------- /swfiles/sw_atomdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_atomdata.m -------------------------------------------------------------------------------- /swfiles/sw_basismat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_basismat.m -------------------------------------------------------------------------------- /swfiles/sw_bonddim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_bonddim.m -------------------------------------------------------------------------------- /swfiles/sw_bose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_bose.m -------------------------------------------------------------------------------- /swfiles/sw_cartesian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_cartesian.m -------------------------------------------------------------------------------- /swfiles/sw_cff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_cff.m -------------------------------------------------------------------------------- /swfiles/sw_converter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_converter.m -------------------------------------------------------------------------------- /swfiles/sw_econtract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_econtract.m -------------------------------------------------------------------------------- /swfiles/sw_egrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_egrid.m -------------------------------------------------------------------------------- /swfiles/sw_extendlattice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_extendlattice.m -------------------------------------------------------------------------------- /swfiles/sw_filelist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_filelist.m -------------------------------------------------------------------------------- /swfiles/sw_freemem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_freemem.m -------------------------------------------------------------------------------- /swfiles/sw_fstat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_fstat.m -------------------------------------------------------------------------------- /swfiles/sw_fsub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_fsub.m -------------------------------------------------------------------------------- /swfiles/sw_import.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_import.m -------------------------------------------------------------------------------- /swfiles/sw_instrument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_instrument.m -------------------------------------------------------------------------------- /swfiles/sw_magdomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_magdomain.m -------------------------------------------------------------------------------- /swfiles/sw_markdown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_markdown.m -------------------------------------------------------------------------------- /swfiles/sw_mattype.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_mattype.m -------------------------------------------------------------------------------- /swfiles/sw_mex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_mex.m -------------------------------------------------------------------------------- /swfiles/sw_mff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_mff.m -------------------------------------------------------------------------------- /swfiles/sw_mirror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_mirror.m -------------------------------------------------------------------------------- /swfiles/sw_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_model.m -------------------------------------------------------------------------------- /swfiles/sw_multicolor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_multicolor.m -------------------------------------------------------------------------------- /swfiles/sw_nb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_nb.m -------------------------------------------------------------------------------- /swfiles/sw_neutron.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_neutron.m -------------------------------------------------------------------------------- /swfiles/sw_nvect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_nvect.m -------------------------------------------------------------------------------- /swfiles/sw_omegasum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_omegasum.m -------------------------------------------------------------------------------- /swfiles/sw_parstr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_parstr.m -------------------------------------------------------------------------------- /swfiles/sw_plotspec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_plotspec.m -------------------------------------------------------------------------------- /swfiles/sw_qgrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_qgrid.m -------------------------------------------------------------------------------- /swfiles/sw_qscan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_qscan.m -------------------------------------------------------------------------------- /swfiles/sw_readparam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_readparam.m -------------------------------------------------------------------------------- /swfiles/sw_readspec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_readspec.m -------------------------------------------------------------------------------- /swfiles/sw_readtable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_readtable.m -------------------------------------------------------------------------------- /swfiles/sw_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_res.m -------------------------------------------------------------------------------- /swfiles/sw_resconv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_resconv.m -------------------------------------------------------------------------------- /swfiles/sw_rootdir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_rootdir.m -------------------------------------------------------------------------------- /swfiles/sw_rot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_rot.m -------------------------------------------------------------------------------- /swfiles/sw_rotmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_rotmat.m -------------------------------------------------------------------------------- /swfiles/sw_rotmatd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_rotmatd.m -------------------------------------------------------------------------------- /swfiles/sw_timeit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_timeit.m -------------------------------------------------------------------------------- /swfiles/sw_tofres.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_tofres.m -------------------------------------------------------------------------------- /swfiles/sw_uniquetol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_uniquetol.m -------------------------------------------------------------------------------- /swfiles/sw_update.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_update.m -------------------------------------------------------------------------------- /swfiles/sw_version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_version.m -------------------------------------------------------------------------------- /swfiles/sw_xray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/sw_xray.m -------------------------------------------------------------------------------- /swfiles/swdoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/swdoc.m -------------------------------------------------------------------------------- /swfiles/swhelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/swhelp.m -------------------------------------------------------------------------------- /swfiles/usefull/sw_always.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/usefull/sw_always.m -------------------------------------------------------------------------------- /swfiles/usefull/sw_createpcr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/usefull/sw_createpcr.m -------------------------------------------------------------------------------- /swfiles/usefull/sw_sub1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/usefull/sw_sub1.m -------------------------------------------------------------------------------- /swfiles/usefull/sw_surf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/swfiles/usefull/sw_surf.m -------------------------------------------------------------------------------- /test/fourier_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/fourier_test.m -------------------------------------------------------------------------------- /test/scga_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/scga_test.m -------------------------------------------------------------------------------- /test/scga_test_kag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/scga_test_kag.m -------------------------------------------------------------------------------- /test/sw_genatpos2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/sw_genatpos2.m -------------------------------------------------------------------------------- /test/sw_symtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/sw_symtest.m -------------------------------------------------------------------------------- /test/sw_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/sw_test.m -------------------------------------------------------------------------------- /test/sw_test_sw1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/sw_test_sw1.m -------------------------------------------------------------------------------- /test/sw_test_sw2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/sw_test_sw2.m -------------------------------------------------------------------------------- /test/sw_test_sym1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/sw_test_sym1.m -------------------------------------------------------------------------------- /test/sw_test_sym2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/sw_test_sym2.m -------------------------------------------------------------------------------- /test/sw_test_sym3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/test/sw_test_sym3.m -------------------------------------------------------------------------------- /tutorials/help/Atomdat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Atomdat.m -------------------------------------------------------------------------------- /tutorials/help/Atomdat/Atomdat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Atomdat/Atomdat.txt -------------------------------------------------------------------------------- /tutorials/help/Atomdat/gen_Atomdat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Atomdat/gen_Atomdat.html -------------------------------------------------------------------------------- /tutorials/help/Bond.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Bond.m -------------------------------------------------------------------------------- /tutorials/help/Bond/Bond.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Bond/Bond.txt -------------------------------------------------------------------------------- /tutorials/help/Bond/gen_Bond.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Bond/gen_Bond.html -------------------------------------------------------------------------------- /tutorials/help/Coordinatesystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Coordinatesystem.m -------------------------------------------------------------------------------- /tutorials/help/Coordinatesystem/Coordinatesystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Coordinatesystem/Coordinatesystem.txt -------------------------------------------------------------------------------- /tutorials/help/Coordinatesystem/gen_Coordinatesystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Coordinatesystem/gen_Coordinatesystem.html -------------------------------------------------------------------------------- /tutorials/help/Documentation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Documentation.m -------------------------------------------------------------------------------- /tutorials/help/Documentation/Documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Documentation/Documentation.txt -------------------------------------------------------------------------------- /tutorials/help/Documentation/gen_Documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Documentation/gen_Documentation.html -------------------------------------------------------------------------------- /tutorials/help/Exchangecoupling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Exchangecoupling.m -------------------------------------------------------------------------------- /tutorials/help/Exchangecoupling/Exchangecoupling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Exchangecoupling/Exchangecoupling.txt -------------------------------------------------------------------------------- /tutorials/help/Exchangecoupling/gen_Exchangecoupling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Exchangecoupling/gen_Exchangecoupling.html -------------------------------------------------------------------------------- /tutorials/help/Exchangecoupling/gen_Exchangecoupling_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Exchangecoupling/gen_Exchangecoupling_01.png -------------------------------------------------------------------------------- /tutorials/help/GenerateFigures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/GenerateFigures.m -------------------------------------------------------------------------------- /tutorials/help/Iondat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Iondat.m -------------------------------------------------------------------------------- /tutorials/help/Iondat/Iondat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Iondat/Iondat.txt -------------------------------------------------------------------------------- /tutorials/help/Iondat/gen_Iondat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Iondat/gen_Iondat.html -------------------------------------------------------------------------------- /tutorials/help/Keywords.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Keywords.m -------------------------------------------------------------------------------- /tutorials/help/Keywords/Keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Keywords/Keywords.txt -------------------------------------------------------------------------------- /tutorials/help/Keywords/gen_Keywords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Keywords/gen_Keywords.html -------------------------------------------------------------------------------- /tutorials/help/Powderspectrum.m: -------------------------------------------------------------------------------- 1 | %% -------------------------------------------------------------------------------- /tutorials/help/Swclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swclass.m -------------------------------------------------------------------------------- /tutorials/help/Swclass/Swclass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swclass/Swclass.txt -------------------------------------------------------------------------------- /tutorials/help/Swclass/export_fig_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swclass/export_fig_out.png -------------------------------------------------------------------------------- /tutorials/help/Swclass/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swclass/fig1.png -------------------------------------------------------------------------------- /tutorials/help/Swclass/fig_test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swclass/fig_test1.png -------------------------------------------------------------------------------- /tutorials/help/Swclass/gen_Swclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swclass/gen_Swclass.html -------------------------------------------------------------------------------- /tutorials/help/Swclass/gen_Swclass_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swclass/gen_Swclass_01.png -------------------------------------------------------------------------------- /tutorials/help/Swclass/painter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swclass/painter.png -------------------------------------------------------------------------------- /tutorials/help/Swproperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swproperties.m -------------------------------------------------------------------------------- /tutorials/help/Swproperties/Swproperties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swproperties/Swproperties.txt -------------------------------------------------------------------------------- /tutorials/help/Swproperties/gen_Swproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/Swproperties/gen_Swproperties.html -------------------------------------------------------------------------------- /tutorials/help/gendoc_PSI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/gendoc_PSI.m -------------------------------------------------------------------------------- /tutorials/help/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/links.txt -------------------------------------------------------------------------------- /tutorials/help/links_save.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/links_save.txt -------------------------------------------------------------------------------- /tutorials/help/noCode.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/noCode.xsl -------------------------------------------------------------------------------- /tutorials/help/swclass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/help/swclass1.png -------------------------------------------------------------------------------- /tutorials/publish/LuVO3_fitted_modes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/LuVO3_fitted_modes.txt -------------------------------------------------------------------------------- /tutorials/publish/publish_PSI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/publish_PSI.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial1/tutorial1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1/tutorial1.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial1/tutorial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1/tutorial1.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial1/tutorial1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1/tutorial1.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial1/tutorial1_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1/tutorial1_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial1/tutorial1_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1/tutorial1_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial1/tutorial1_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1/tutorial1_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial1/tutorial1_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1/tutorial1_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial1/tutorial1_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial1/tutorial1_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial10.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial10.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial10/tutorial10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial10/tutorial10.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial10/tutorial10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial10/tutorial10.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial10/tutorial10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial10/tutorial10.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial10/tutorial10_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial10/tutorial10_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial10/tutorial10_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial10/tutorial10_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial10/tutorial10_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial10/tutorial10_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial10/tutorial10_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial10/tutorial10_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial11.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial11.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial11/tutorial11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial11/tutorial11.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial11/tutorial11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial11/tutorial11.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial11/tutorial11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial11/tutorial11.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial11/tutorial11_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial11/tutorial11_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial11/tutorial11_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial11/tutorial11_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial12.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12_06.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial12/tutorial12_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial12/tutorial12_07.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial13.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial13/tutorial13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13/tutorial13.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial13/tutorial13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13/tutorial13.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial13/tutorial13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13/tutorial13.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial13/tutorial13_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13/tutorial13_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial13/tutorial13_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13/tutorial13_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial13/tutorial13_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13/tutorial13_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial13/tutorial13_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13/tutorial13_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial13/tutorial13_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial13/tutorial13_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial14.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial14.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial14/tutorial14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial14/tutorial14.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial14/tutorial14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial14/tutorial14.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial14/tutorial14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial14/tutorial14.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial14/tutorial14_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial14/tutorial14_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial14/tutorial14_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial14/tutorial14_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial14/tutorial14_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial14/tutorial14_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial15.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial15/tutorial15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15/tutorial15.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial15/tutorial15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15/tutorial15.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial15/tutorial15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15/tutorial15.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial15/tutorial15_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15/tutorial15_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial15/tutorial15_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15/tutorial15_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial15/tutorial15_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15/tutorial15_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial15/tutorial15_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15/tutorial15_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial15/tutorial15_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial15/tutorial15_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_06.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_07.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_08.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_09.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_10.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial16/tutorial16_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial16/tutorial16_11.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial17.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial17.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial17/tutorial17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial17/tutorial17.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial17/tutorial17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial17/tutorial17.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial18.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial18/tutorial18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18/tutorial18.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial18/tutorial18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18/tutorial18.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial18/tutorial18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18/tutorial18.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial18/tutorial18_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18/tutorial18_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial18/tutorial18_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18/tutorial18_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial18/tutorial18_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18/tutorial18_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial18/tutorial18_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18/tutorial18_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial18/tutorial18_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial18/tutorial18_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial19.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial19/tutorial19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19/tutorial19.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial19/tutorial19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19/tutorial19.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial19/tutorial19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19/tutorial19.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial19/tutorial19_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19/tutorial19_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial19/tutorial19_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19/tutorial19_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial19/tutorial19_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19/tutorial19_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial19/tutorial19_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19/tutorial19_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial19/tutorial19_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial19/tutorial19_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial2.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial2/tutorial2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial2/tutorial2.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial2/tutorial2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial2/tutorial2.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial2/tutorial2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial2/tutorial2.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial2/tutorial2_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial2/tutorial2_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial2/tutorial2_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial2/tutorial2_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial2/tutorial2_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial2/tutorial2_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial2/tutorial2_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial2/tutorial2_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial20.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial20.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial20/tutorial20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial20/tutorial20.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial20/tutorial20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial20/tutorial20.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial20/tutorial20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial20/tutorial20.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial20/tutorial20_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial20/tutorial20_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial20/tutorial20_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial20/tutorial20_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial20/tutorial20_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial20/tutorial20_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial20/tutorial20_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial20/tutorial20_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial21.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial21.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial21/tutorial21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial21/tutorial21.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial21/tutorial21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial21/tutorial21.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial21/tutorial21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial21/tutorial21.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial21/tutorial21_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial21/tutorial21_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial21/tutorial21_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial21/tutorial21_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial21/tutorial21_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial21/tutorial21_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial21/tutorial21_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial21/tutorial21_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial22/tutorial22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial22/tutorial22.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial22/tutorial22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial22/tutorial22.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial23/tutorial23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial23/tutorial23.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial23/tutorial23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial23/tutorial23.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial26/tutorial26.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial26/tutorial26.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial26/tutorial26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial26/tutorial26.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial28/tutorial28.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial28/tutorial28.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial28/tutorial28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial28/tutorial28.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial28/tutorial28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial28/tutorial28.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial28/tutorial28_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial28/tutorial28_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial28/tutorial28_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial28/tutorial28_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial28/tutorial28_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial28/tutorial28_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial28/tutorial28_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial28/tutorial28_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial29/tutorial29.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial29/tutorial29.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial29/tutorial29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial29/tutorial29.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial3/tutorial3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3/tutorial3.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial3/tutorial3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3/tutorial3.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial3/tutorial3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3/tutorial3.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial3/tutorial3_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3/tutorial3_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial3/tutorial3_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3/tutorial3_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial3/tutorial3_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3/tutorial3_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial3/tutorial3_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3/tutorial3_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial3/tutorial3_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial3/tutorial3_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30_06.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30_07.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial30/tutorial30_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial30/tutorial30_08.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_06.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_07.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_08.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_09.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_10.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_11.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial31/tutorial31_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial31/tutorial31_12.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32_06.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial32/tutorial32_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial32/tutorial32_07.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial33.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial33.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial33/tutorial33.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial33/tutorial33.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial33/tutorial33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial33/tutorial33.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial33/tutorial33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial33/tutorial33.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial33/tutorial33_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial33/tutorial33_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial33/tutorial33_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial33/tutorial33_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial33/tutorial33_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial33/tutorial33_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial34.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial34.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial34/tutorial34.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial34/tutorial34.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial34/tutorial34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial34/tutorial34.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial34/tutorial34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial34/tutorial34.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial34/tutorial34_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial34/tutorial34_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial34/tutorial34_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial34/tutorial34_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial34/tutorial34_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial34/tutorial34_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial35.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial35/tutorial35.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35/tutorial35.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial35/tutorial35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35/tutorial35.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial35/tutorial35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35/tutorial35.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial35/tutorial35_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35/tutorial35_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial35/tutorial35_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35/tutorial35_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial35/tutorial35_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35/tutorial35_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial35/tutorial35_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35/tutorial35_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial35/tutorial35_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial35/tutorial35_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial36.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial36.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial37.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial37.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial38.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial38.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial38/tutorial38.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial38/tutorial38.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial38/tutorial38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial38/tutorial38.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial38/tutorial38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial38/tutorial38.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial38/tutorial38_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial38/tutorial38_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial38/tutorial38_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial38/tutorial38_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial38/tutorial38_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial38/tutorial38_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial38/tutorial38_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial38/tutorial38_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial4.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial4/tutorial4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial4/tutorial4.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial4/tutorial4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial4/tutorial4.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial4/tutorial4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial4/tutorial4.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial4/tutorial4_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial4/tutorial4_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial4/tutorial4_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial4/tutorial4_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial4/tutorial4_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial4/tutorial4_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial4/tutorial4_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial4/tutorial4_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial5/tutorial5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5/tutorial5.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial5/tutorial5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5/tutorial5.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial5/tutorial5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5/tutorial5.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial5/tutorial5_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5/tutorial5_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial5/tutorial5_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5/tutorial5_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial5/tutorial5_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5/tutorial5_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial5/tutorial5_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5/tutorial5_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial5/tutorial5_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial5/tutorial5_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial6.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial6/tutorial6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6/tutorial6.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial6/tutorial6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6/tutorial6.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial6/tutorial6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6/tutorial6.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial6/tutorial6_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6/tutorial6_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial6/tutorial6_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6/tutorial6_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial6/tutorial6_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6/tutorial6_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial6/tutorial6_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6/tutorial6_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial6/tutorial6_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial6/tutorial6_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial7.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial7/tutorial7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7/tutorial7.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial7/tutorial7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7/tutorial7.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial7/tutorial7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7/tutorial7.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial7/tutorial7_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7/tutorial7_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial7/tutorial7_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7/tutorial7_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial7/tutorial7_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7/tutorial7_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial7/tutorial7_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7/tutorial7_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial7/tutorial7_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial7/tutorial7_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8_06.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8_07.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial8/tutorial8_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial8/tutorial8_08.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial9.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9.m -------------------------------------------------------------------------------- /tutorials/publish/tutorial9/tutorial9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9/tutorial9.html -------------------------------------------------------------------------------- /tutorials/publish/tutorial9/tutorial9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9/tutorial9.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial9/tutorial9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9/tutorial9.txt -------------------------------------------------------------------------------- /tutorials/publish/tutorial9/tutorial9_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9/tutorial9_01.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial9/tutorial9_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9/tutorial9_02.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial9/tutorial9_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9/tutorial9_03.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial9/tutorial9_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9/tutorial9_04.png -------------------------------------------------------------------------------- /tutorials/publish/tutorial9/tutorial9_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorial9/tutorial9_05.png -------------------------------------------------------------------------------- /tutorials/publish/tutorials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/publish/tutorials.txt -------------------------------------------------------------------------------- /tutorials/tutorial/Ba3NbFe3Si2O14_chirality.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/Ba3NbFe3Si2O14_chirality.m -------------------------------------------------------------------------------- /tutorials/tutorial/CuV2O7.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/CuV2O7.m -------------------------------------------------------------------------------- /tutorials/tutorial/LuMnO3.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/LuMnO3.cif -------------------------------------------------------------------------------- /tutorials/tutorial/LuMnO3_spectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/LuMnO3_spectrum.m -------------------------------------------------------------------------------- /tutorials/tutorial/YIG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/YIG.m -------------------------------------------------------------------------------- /tutorials/tutorial/alpha-Cu2V2O7.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/alpha-Cu2V2O7.cif -------------------------------------------------------------------------------- /tutorials/tutorial/aniso_rotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/aniso_rotation.m -------------------------------------------------------------------------------- /tutorials/tutorial/anneal_tutorial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/anneal_tutorial.m -------------------------------------------------------------------------------- /tutorials/tutorial/ca2ruo4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/ca2ruo4.m -------------------------------------------------------------------------------- /tutorials/tutorial/damping_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/damping_example.m -------------------------------------------------------------------------------- /tutorials/tutorial/fit_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/fit_example.m -------------------------------------------------------------------------------- /tutorials/tutorial/helical_chain_infield.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/helical_chain_infield.m -------------------------------------------------------------------------------- /tutorials/tutorial/inpurity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/inpurity.m -------------------------------------------------------------------------------- /tutorials/tutorial/tutorial22.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/tutorial22.m -------------------------------------------------------------------------------- /tutorials/tutorial/tutorial23.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/tutorial23.m -------------------------------------------------------------------------------- /tutorials/tutorial/tutorial26.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/tutorial26.m -------------------------------------------------------------------------------- /tutorials/tutorial/tutorial28.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/tutorial28.m -------------------------------------------------------------------------------- /tutorials/tutorial/tutorial29.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsdev/spinw/HEAD/tutorials/tutorial/tutorial29.m --------------------------------------------------------------------------------