├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── plotly ├── README.txt ├── Test_plotlyfig.m ├── addtheme.m ├── export_fig2 │ ├── export_fig2.m │ ├── getKaleido.m │ └── write_image.m ├── fig2plotly.m ├── getplotlyfig.m ├── kaleido │ └── .gitignore ├── plotly_aux │ ├── Test_m2json.m │ ├── cell2json.m │ ├── checkescape.m │ ├── escapechars.m │ ├── getuserdir.m │ ├── is_octave.m │ ├── m2json.m │ ├── makecall.m │ ├── plotly.m │ ├── plotly_version.m │ ├── plotlygenimage.m │ ├── plotlygetfile.m │ ├── rangeLength.m │ ├── struct2json.m │ └── validatedir.m ├── plotly_help_aux │ ├── plotly_reference.mat │ └── updateplotlyhelp.m ├── plotly_offline_aux │ ├── getplotlyoffline.m │ └── plotlyoffline.m ├── plotly_setup_aux │ ├── addplotlystartup.m │ ├── plotlycleanup.m │ └── plotlyupdate.m ├── plotly_user_aux │ ├── loadplotlyconfig.m │ ├── loadplotlycredentials.m │ ├── saveplotlyconfig.m │ ├── saveplotlycredentials.m │ ├── signin.m │ └── signup.m ├── plotlyfig.m ├── plotlyfig_aux │ ├── core │ │ ├── getHeatmapTitleAnnotation.m │ │ ├── updateAnnotation.m │ │ ├── updateAxis.m │ │ ├── updateAxisMultipleYAxes.m │ │ ├── updateColorbar.m │ │ ├── updateConstantLine.m │ │ ├── updateData.m │ │ ├── updateFigure.m │ │ ├── updateLegend.m │ │ ├── updateLegendMultipleAxes.m │ │ ├── updateTernaryColorbar.m │ │ └── updateTiledLayoutAnnotation.m │ ├── handlegraphics │ │ ├── UpdateGeoAxes.m │ │ ├── updateAlternativeBoxplot.m │ │ ├── updateAnimatedLine.m │ │ ├── updateArea.m │ │ ├── updateAreaseries.m │ │ ├── updateBar.m │ │ ├── updateBar3.m │ │ ├── updateBar3h.m │ │ ├── updateBarseries.m │ │ ├── updateBaseline.m │ │ ├── updateBoxplot.m │ │ ├── updateCategoricalHistogram.m │ │ ├── updateComet.m │ │ ├── updateConeplot.m │ │ ├── updateContour3.m │ │ ├── updateContourProjection.m │ │ ├── updateContourgroup.m │ │ ├── updateErrorbar.m │ │ ├── updateErrorbarseries.m │ │ ├── updateFmesh.m │ │ ├── updateFunctionContour.m │ │ ├── updateFunctionSurface.m │ │ ├── updateGeoPlot.m │ │ ├── updateGeoScatter.m │ │ ├── updateGeobubble.m │ │ ├── updateHeatmap.m │ │ ├── updateHistogram.m │ │ ├── updateHistogram2.m │ │ ├── updateHistogramPolar.m │ │ ├── updateImage.m │ │ ├── updateImage3D.m │ │ ├── updateImplicitFunctionSurface.m │ │ ├── updateIsosurface.m │ │ ├── updateLineseries.m │ │ ├── updateMesh.m │ │ ├── updateOnlyAxes.m │ │ ├── updatePColor.m │ │ ├── updatePatch.m │ │ ├── updatePie3.m │ │ ├── updatePolarplot.m │ │ ├── updateQuiver.m │ │ ├── updateQuivergroup.m │ │ ├── updateRectangle.m │ │ ├── updateScatter.m │ │ ├── updateScatterPolar.m │ │ ├── updateScattergroup.m │ │ ├── updateScatterhistogram.m │ │ ├── updateSlice.m │ │ ├── updateSpiderPlot.m │ │ ├── updateStackedplot.m │ │ ├── updateStair.m │ │ ├── updateStairseries.m │ │ ├── updateStem.m │ │ ├── updateStemseries.m │ │ ├── updateStreamtube.m │ │ ├── updateSurf.m │ │ ├── updateSurfaceplot.m │ │ ├── updateSurfc.m │ │ ├── updateSurfl.m │ │ ├── updateTernaryContour.m │ │ ├── updateTernaryPlot.m │ │ ├── updateTernaryPlotPro.m │ │ └── updateWordcloud.m │ └── helpers │ │ ├── cleanFeedTitle.m │ │ ├── convertDate.m │ │ ├── convertDuration.m │ │ ├── extractAreaFace.m │ │ ├── extractAreaLine.m │ │ ├── extractAxisData.m │ │ ├── extractAxisDataMultipleYAxes.m │ │ ├── extractBarMarker.m │ │ ├── extractGeoLinePlusMarker.m │ │ ├── extractGeoMarker.m │ │ ├── extractHeatmapAxisData.m │ │ ├── extractLineLine.m │ │ ├── extractLineMarker.m │ │ ├── extractPatchFace.m │ │ ├── extractPatchLine.m │ │ ├── extractPatchMarker.m │ │ ├── extractScatterMarker.m │ │ ├── extractScatterhistogramMarker.m │ │ ├── findColorbarAxis.m │ │ ├── findColorbarData.m │ │ ├── findLegendAxis.m │ │ ├── findSourceAxis.m │ │ ├── formatRW.m │ │ ├── generateBoxData.m │ │ ├── getGraphClass.m │ │ ├── getLineDash.m │ │ ├── getMarkerSymbol.m │ │ ├── getScatterMode.m │ │ ├── getShowLegend.m │ │ ├── getStringColor.m │ │ ├── handleFileName.m │ │ ├── histogramOrientation.m │ │ ├── isBoxplot.m │ │ ├── isExceptionStrip.m │ │ ├── isHG2.m │ │ ├── isHistogram.m │ │ ├── isMultipleBaseline.m │ │ ├── isOverlappingAxis.m │ │ ├── matlab2plotlyfont.m │ │ ├── openurl.m │ │ ├── parseString.m │ │ ├── plotlymsg.m │ │ └── specialAxisPlots.m ├── plotlyhelp.m ├── plotlystream.m ├── plotlystream_aux │ └── plotlystream_demo.m ├── saveplotlyfig.m └── themes │ ├── ggplot2.json │ ├── gridon.json │ ├── plotly.json │ ├── plotly_dark.json │ ├── plotly_white.json │ ├── presentation.json │ ├── seaborn.json │ ├── simple_white.json │ ├── xgridoff.json │ └── ygridoff.json ├── plotlysetup_offline.m └── plotlysetup_online.m /.gitignore: -------------------------------------------------------------------------------- 1 | dev/ 2 | *.asv 3 | untitled.html 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/README.md -------------------------------------------------------------------------------- /plotly/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/README.txt -------------------------------------------------------------------------------- /plotly/Test_plotlyfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/Test_plotlyfig.m -------------------------------------------------------------------------------- /plotly/addtheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/addtheme.m -------------------------------------------------------------------------------- /plotly/export_fig2/export_fig2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/export_fig2/export_fig2.m -------------------------------------------------------------------------------- /plotly/export_fig2/getKaleido.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/export_fig2/getKaleido.m -------------------------------------------------------------------------------- /plotly/export_fig2/write_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/export_fig2/write_image.m -------------------------------------------------------------------------------- /plotly/fig2plotly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/fig2plotly.m -------------------------------------------------------------------------------- /plotly/getplotlyfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/getplotlyfig.m -------------------------------------------------------------------------------- /plotly/kaleido/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /plotly/plotly_aux/Test_m2json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/Test_m2json.m -------------------------------------------------------------------------------- /plotly/plotly_aux/cell2json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/cell2json.m -------------------------------------------------------------------------------- /plotly/plotly_aux/checkescape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/checkescape.m -------------------------------------------------------------------------------- /plotly/plotly_aux/escapechars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/escapechars.m -------------------------------------------------------------------------------- /plotly/plotly_aux/getuserdir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/getuserdir.m -------------------------------------------------------------------------------- /plotly/plotly_aux/is_octave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/is_octave.m -------------------------------------------------------------------------------- /plotly/plotly_aux/m2json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/m2json.m -------------------------------------------------------------------------------- /plotly/plotly_aux/makecall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/makecall.m -------------------------------------------------------------------------------- /plotly/plotly_aux/plotly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/plotly.m -------------------------------------------------------------------------------- /plotly/plotly_aux/plotly_version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/plotly_version.m -------------------------------------------------------------------------------- /plotly/plotly_aux/plotlygenimage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/plotlygenimage.m -------------------------------------------------------------------------------- /plotly/plotly_aux/plotlygetfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/plotlygetfile.m -------------------------------------------------------------------------------- /plotly/plotly_aux/rangeLength.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/rangeLength.m -------------------------------------------------------------------------------- /plotly/plotly_aux/struct2json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/struct2json.m -------------------------------------------------------------------------------- /plotly/plotly_aux/validatedir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_aux/validatedir.m -------------------------------------------------------------------------------- /plotly/plotly_help_aux/plotly_reference.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_help_aux/plotly_reference.mat -------------------------------------------------------------------------------- /plotly/plotly_help_aux/updateplotlyhelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_help_aux/updateplotlyhelp.m -------------------------------------------------------------------------------- /plotly/plotly_offline_aux/getplotlyoffline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_offline_aux/getplotlyoffline.m -------------------------------------------------------------------------------- /plotly/plotly_offline_aux/plotlyoffline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_offline_aux/plotlyoffline.m -------------------------------------------------------------------------------- /plotly/plotly_setup_aux/addplotlystartup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_setup_aux/addplotlystartup.m -------------------------------------------------------------------------------- /plotly/plotly_setup_aux/plotlycleanup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_setup_aux/plotlycleanup.m -------------------------------------------------------------------------------- /plotly/plotly_setup_aux/plotlyupdate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_setup_aux/plotlyupdate.m -------------------------------------------------------------------------------- /plotly/plotly_user_aux/loadplotlyconfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_user_aux/loadplotlyconfig.m -------------------------------------------------------------------------------- /plotly/plotly_user_aux/loadplotlycredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_user_aux/loadplotlycredentials.m -------------------------------------------------------------------------------- /plotly/plotly_user_aux/saveplotlyconfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_user_aux/saveplotlyconfig.m -------------------------------------------------------------------------------- /plotly/plotly_user_aux/saveplotlycredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_user_aux/saveplotlycredentials.m -------------------------------------------------------------------------------- /plotly/plotly_user_aux/signin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_user_aux/signin.m -------------------------------------------------------------------------------- /plotly/plotly_user_aux/signup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotly_user_aux/signup.m -------------------------------------------------------------------------------- /plotly/plotlyfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/getHeatmapTitleAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/getHeatmapTitleAnnotation.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateAnnotation.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateAxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateAxis.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateAxisMultipleYAxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateAxisMultipleYAxes.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateColorbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateColorbar.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateConstantLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateConstantLine.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateData.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateFigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateFigure.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateLegend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateLegend.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateLegendMultipleAxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateLegendMultipleAxes.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateTernaryColorbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateTernaryColorbar.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/core/updateTiledLayoutAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/core/updateTiledLayoutAnnotation.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/UpdateGeoAxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/UpdateGeoAxes.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateAlternativeBoxplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateAlternativeBoxplot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateAnimatedLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateAnimatedLine.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateArea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateArea.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateAreaseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateAreaseries.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateBar.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateBar3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateBar3.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateBar3h.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateBar3h.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateBarseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateBarseries.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateBaseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateBaseline.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateBoxplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateBoxplot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateCategoricalHistogram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateCategoricalHistogram.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateComet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateComet.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateConeplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateConeplot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateContour3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateContour3.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateContourProjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateContourProjection.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateContourgroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateContourgroup.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateErrorbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateErrorbar.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateErrorbarseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateErrorbarseries.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateFmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateFmesh.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateFunctionContour.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateFunctionContour.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateFunctionSurface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateFunctionSurface.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateGeoPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateGeoPlot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateGeoScatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateGeoScatter.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateGeobubble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateGeobubble.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateHeatmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateHeatmap.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateHistogram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateHistogram.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateHistogram2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateHistogram2.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateHistogramPolar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateHistogramPolar.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateImage.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateImage3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateImage3D.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateImplicitFunctionSurface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateImplicitFunctionSurface.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateIsosurface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateIsosurface.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateLineseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateLineseries.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateMesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateMesh.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateOnlyAxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateOnlyAxes.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updatePColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updatePColor.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updatePatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updatePatch.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updatePie3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updatePie3.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updatePolarplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updatePolarplot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateQuiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateQuiver.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateQuivergroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateQuivergroup.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateRectangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateRectangle.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateScatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateScatter.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateScatterPolar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateScatterPolar.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateScattergroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateScattergroup.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateScatterhistogram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateScatterhistogram.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateSlice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateSlice.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateSpiderPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateSpiderPlot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateStackedplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateStackedplot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateStair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateStair.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateStairseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateStairseries.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateStem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateStem.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateStemseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateStemseries.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateStreamtube.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateStreamtube.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateSurf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateSurf.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateSurfaceplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateSurfaceplot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateSurfc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateSurfc.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateSurfl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateSurfl.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateTernaryContour.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateTernaryContour.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateTernaryPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateTernaryPlot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateTernaryPlotPro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateTernaryPlotPro.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/handlegraphics/updateWordcloud.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/handlegraphics/updateWordcloud.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/cleanFeedTitle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/cleanFeedTitle.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/convertDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/convertDate.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/convertDuration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/convertDuration.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractAreaFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractAreaFace.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractAreaLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractAreaLine.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractAxisData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractAxisData.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractAxisDataMultipleYAxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractAxisDataMultipleYAxes.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractBarMarker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractBarMarker.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractGeoLinePlusMarker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractGeoLinePlusMarker.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractGeoMarker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractGeoMarker.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractHeatmapAxisData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractHeatmapAxisData.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractLineLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractLineLine.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractLineMarker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractLineMarker.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractPatchFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractPatchFace.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractPatchLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractPatchLine.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractPatchMarker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractPatchMarker.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractScatterMarker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractScatterMarker.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/extractScatterhistogramMarker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/extractScatterhistogramMarker.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/findColorbarAxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/findColorbarAxis.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/findColorbarData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/findColorbarData.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/findLegendAxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/findLegendAxis.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/findSourceAxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/findSourceAxis.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/formatRW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/formatRW.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/generateBoxData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/generateBoxData.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/getGraphClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/getGraphClass.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/getLineDash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/getLineDash.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/getMarkerSymbol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/getMarkerSymbol.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/getScatterMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/getScatterMode.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/getShowLegend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/getShowLegend.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/getStringColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/getStringColor.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/handleFileName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/handleFileName.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/histogramOrientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/histogramOrientation.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/isBoxplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/isBoxplot.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/isExceptionStrip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/isExceptionStrip.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/isHG2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/isHG2.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/isHistogram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/isHistogram.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/isMultipleBaseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/isMultipleBaseline.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/isOverlappingAxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/isOverlappingAxis.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/matlab2plotlyfont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/matlab2plotlyfont.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/openurl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/openurl.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/parseString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/parseString.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/plotlymsg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/plotlymsg.m -------------------------------------------------------------------------------- /plotly/plotlyfig_aux/helpers/specialAxisPlots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyfig_aux/helpers/specialAxisPlots.m -------------------------------------------------------------------------------- /plotly/plotlyhelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlyhelp.m -------------------------------------------------------------------------------- /plotly/plotlystream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlystream.m -------------------------------------------------------------------------------- /plotly/plotlystream_aux/plotlystream_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/plotlystream_aux/plotlystream_demo.m -------------------------------------------------------------------------------- /plotly/saveplotlyfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/saveplotlyfig.m -------------------------------------------------------------------------------- /plotly/themes/ggplot2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/ggplot2.json -------------------------------------------------------------------------------- /plotly/themes/gridon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/gridon.json -------------------------------------------------------------------------------- /plotly/themes/plotly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/plotly.json -------------------------------------------------------------------------------- /plotly/themes/plotly_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/plotly_dark.json -------------------------------------------------------------------------------- /plotly/themes/plotly_white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/plotly_white.json -------------------------------------------------------------------------------- /plotly/themes/presentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/presentation.json -------------------------------------------------------------------------------- /plotly/themes/seaborn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/seaborn.json -------------------------------------------------------------------------------- /plotly/themes/simple_white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/simple_white.json -------------------------------------------------------------------------------- /plotly/themes/xgridoff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/xgridoff.json -------------------------------------------------------------------------------- /plotly/themes/ygridoff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotly/themes/ygridoff.json -------------------------------------------------------------------------------- /plotlysetup_offline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotlysetup_offline.m -------------------------------------------------------------------------------- /plotlysetup_online.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/plotly_matlab/HEAD/plotlysetup_online.m --------------------------------------------------------------------------------