├── .gitignore ├── Contour ├── Version History.md ├── contourpolefigures.m ├── gaussiancontour.m ├── initcrystaldirections.m ├── kambcontour.m ├── lowerhemisphere.m ├── makepolefigures.m ├── rotationmatrix2crystaldirections.m ├── rotationmatrix2quartzdirections.m ├── test-quartz.txt └── testcontourstereogram.m ├── Drex.m ├── Images ├── _Figure_SyntheticOlivine.png └── _Figure_SyntheticOlivineFlows-01.png ├── License.md ├── README.md ├── colormaps ├── algae.m ├── coolwarm.m ├── hklcolor.m ├── rdylbu.m ├── test_colormaps.m └── virus.m ├── dispstat ├── dispstat.m ├── license.txt └── test_dispstat.m ├── export_fig ├── .gitignore ├── .ignore │ ├── ghostscript.txt │ └── gs_font_path.txt ├── ImageSelection.class ├── ImageSelection.java ├── LICENSE ├── README.md ├── append_pdfs.m ├── copyfig.m ├── crop_borders.m ├── eps2pdf.m ├── export_fig.m ├── fix_lines.m ├── ghostscript.m ├── im2gif.m ├── isolate_axes.m ├── pdf2eps.m ├── pdftops.m ├── print2array.m ├── print2eps.m ├── read_write_entire_textfile.m ├── user_string.m └── using_hg2.m └── functions ├── cmapscale.m ├── euler2orientationmatrix.m ├── gcolor.m ├── lambertprojection.m ├── orientationmatrix2euler.m ├── polenet.m └── wrap.m /.gitignore: -------------------------------------------------------------------------------- 1 | Output/* -------------------------------------------------------------------------------- /Contour/Version History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/Version History.md -------------------------------------------------------------------------------- /Contour/contourpolefigures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/contourpolefigures.m -------------------------------------------------------------------------------- /Contour/gaussiancontour.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/gaussiancontour.m -------------------------------------------------------------------------------- /Contour/initcrystaldirections.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/initcrystaldirections.m -------------------------------------------------------------------------------- /Contour/kambcontour.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/kambcontour.m -------------------------------------------------------------------------------- /Contour/lowerhemisphere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/lowerhemisphere.m -------------------------------------------------------------------------------- /Contour/makepolefigures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/makepolefigures.m -------------------------------------------------------------------------------- /Contour/rotationmatrix2crystaldirections.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/rotationmatrix2crystaldirections.m -------------------------------------------------------------------------------- /Contour/rotationmatrix2quartzdirections.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/rotationmatrix2quartzdirections.m -------------------------------------------------------------------------------- /Contour/test-quartz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/test-quartz.txt -------------------------------------------------------------------------------- /Contour/testcontourstereogram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Contour/testcontourstereogram.m -------------------------------------------------------------------------------- /Drex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Drex.m -------------------------------------------------------------------------------- /Images/_Figure_SyntheticOlivine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Images/_Figure_SyntheticOlivine.png -------------------------------------------------------------------------------- /Images/_Figure_SyntheticOlivineFlows-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/Images/_Figure_SyntheticOlivineFlows-01.png -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/README.md -------------------------------------------------------------------------------- /colormaps/algae.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/colormaps/algae.m -------------------------------------------------------------------------------- /colormaps/coolwarm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/colormaps/coolwarm.m -------------------------------------------------------------------------------- /colormaps/hklcolor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/colormaps/hklcolor.m -------------------------------------------------------------------------------- /colormaps/rdylbu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/colormaps/rdylbu.m -------------------------------------------------------------------------------- /colormaps/test_colormaps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/colormaps/test_colormaps.m -------------------------------------------------------------------------------- /colormaps/virus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/colormaps/virus.m -------------------------------------------------------------------------------- /dispstat/dispstat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/dispstat/dispstat.m -------------------------------------------------------------------------------- /dispstat/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/dispstat/license.txt -------------------------------------------------------------------------------- /dispstat/test_dispstat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/dispstat/test_dispstat.m -------------------------------------------------------------------------------- /export_fig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/.gitignore -------------------------------------------------------------------------------- /export_fig/.ignore/ghostscript.txt: -------------------------------------------------------------------------------- 1 | /usr/local/bin/gs -------------------------------------------------------------------------------- /export_fig/.ignore/gs_font_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/.ignore/gs_font_path.txt -------------------------------------------------------------------------------- /export_fig/ImageSelection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/ImageSelection.class -------------------------------------------------------------------------------- /export_fig/ImageSelection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/ImageSelection.java -------------------------------------------------------------------------------- /export_fig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/LICENSE -------------------------------------------------------------------------------- /export_fig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/README.md -------------------------------------------------------------------------------- /export_fig/append_pdfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/append_pdfs.m -------------------------------------------------------------------------------- /export_fig/copyfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/copyfig.m -------------------------------------------------------------------------------- /export_fig/crop_borders.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/crop_borders.m -------------------------------------------------------------------------------- /export_fig/eps2pdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/eps2pdf.m -------------------------------------------------------------------------------- /export_fig/export_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/export_fig.m -------------------------------------------------------------------------------- /export_fig/fix_lines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/fix_lines.m -------------------------------------------------------------------------------- /export_fig/ghostscript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/ghostscript.m -------------------------------------------------------------------------------- /export_fig/im2gif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/im2gif.m -------------------------------------------------------------------------------- /export_fig/isolate_axes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/isolate_axes.m -------------------------------------------------------------------------------- /export_fig/pdf2eps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/pdf2eps.m -------------------------------------------------------------------------------- /export_fig/pdftops.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/pdftops.m -------------------------------------------------------------------------------- /export_fig/print2array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/print2array.m -------------------------------------------------------------------------------- /export_fig/print2eps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/print2eps.m -------------------------------------------------------------------------------- /export_fig/read_write_entire_textfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/read_write_entire_textfile.m -------------------------------------------------------------------------------- /export_fig/user_string.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/user_string.m -------------------------------------------------------------------------------- /export_fig/using_hg2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/export_fig/using_hg2.m -------------------------------------------------------------------------------- /functions/cmapscale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/functions/cmapscale.m -------------------------------------------------------------------------------- /functions/euler2orientationmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/functions/euler2orientationmatrix.m -------------------------------------------------------------------------------- /functions/gcolor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/functions/gcolor.m -------------------------------------------------------------------------------- /functions/lambertprojection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/functions/lambertprojection.m -------------------------------------------------------------------------------- /functions/orientationmatrix2euler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/functions/orientationmatrix2euler.m -------------------------------------------------------------------------------- /functions/polenet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/functions/polenet.m -------------------------------------------------------------------------------- /functions/wrap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cthissen/Drex-MATLAB/HEAD/functions/wrap.m --------------------------------------------------------------------------------