Dan
Dan
PR part of the 2022 refactor, bringing all apps up to date.
PR part of the 2022 refacrtor, bringing all apps up to date.
PR part of the 2022 refactor, bringing all apps up to date.
PR part of the 2022 refacrtor, bringing all apps up to date.
PR part of the 2022 refactor, bringing all apps up to date.
Would it be possible to remove margin (on the left side of the plot), because it makes the plots in the online docs function badly. When you open the plot...
none of these work- https://github.com/plotly/plotly.matlab-docs/blob/main/matlab/2021-08-04-gauge-charts.md
``` load SimulatedStock.mat; candle(TMW(end-20:end,:),'b'); title('Candlestick chart for TMW') fig2plotly(gcf); ``` does not work. The following plot plots but results in an warning: ``` load disney.mat candle(dis('3/31/98::4/30/98')) title('Disney 3/31/98 to 4/30/98')...
``` fsurf(@(x,y) y.*sin(x)-x.*cos(y),[-2*pi 2*pi]) title('ysin(x) - xcos(y) for x and y in [-2\pi,2\pi]') xlabel('x'); ylabel('y'); zlabel('z'); box on ax = gca; ax.XTick = -2*pi:pi/2:2*pi; ax.XTickLabel = {'-2\pi','-3\pi/2','-\pi','-\pi/2','0','\pi/2','\pi','3\pi/2','2\pi'}; ax.YTick = -2*pi:pi/2:2*pi;...