Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f1eca36

Browse files
committed
results from running run.py process scripts, matlab_exceptions, publish.py test, publish.py publish on modified matlab examples
1 parent 0f02c4a commit f1eca36

File tree

19 files changed

+41
-26
lines changed

19 files changed

+41
-26
lines changed

auto-docs/chart-types/box/matlab-basic-box-plot/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ fig = figure;
1111
boxplot([data1,data2])
1212

1313
%--PLOTLY--%
14-
response = fig2plotly(fig);
14+
response = fig2plotly(fig, 'filename', 'matlab-basic-box-plot');
1515
plotly_url = response.url;

auto-docs/chart-types/line_exclusive/matlab-line-and-scatter-basic/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ xlabel('Time (s.)');
2929
ylabel('Amplitude');
3030

3131
%--PLOTLY--%
32-
response = fig2plotly(fig);
32+
response = fig2plotly(fig, 'filename', 'matlab-line-and-scatter-basic');
3333
plotly_url = response.url;

auto-docs/chart-types/scatter_exclusive/matlab-seamount-scatter/matlab/code.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ scatter(x,y,s,c)
1010
zoom(2)
1111

1212
%--PLOTLY--%
13-
response = fig2plotly(fig, 'strip', false); %<----- preserve MATLAB style!
13+
14+
% strip = false => preserve MATLAB style!
15+
16+
response = fig2plotly(fig, 'filename', 'matlab-seamount-scatter', 'strip', false);
1417
plotly_url = response.url;

auto-docs/executables/matlab/matlab_basic_box_plot.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
boxplot([data1,data2])
1010

1111
%--PLOTLY--%
12-
response = fig2plotly(fig);
12+
response = fig2plotly(fig, 'filename', 'matlab-basic-box-plot');
1313
plotly_url = response.url;

auto-docs/executables/matlab/matlab_line_and_scatter_basic.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
ylabel('Amplitude');
2828

2929
%--PLOTLY--%
30-
response = fig2plotly(fig);
30+
response = fig2plotly(fig, 'filename', 'matlab-line-and-scatter-basic');
3131
plotly_url = response.url;

auto-docs/executables/matlab/matlab_seamount_scatter.m

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
zoom(2)
99

1010
%--PLOTLY--%
11-
response = fig2plotly(fig, 'strip', false); %<----- preserve MATLAB style!
11+
12+
% strip = false => preserve MATLAB style!
13+
14+
response = fig2plotly(fig, 'filename', 'matlab-seamount-scatter', 'strip', false);
1215
plotly_url = response.url;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"url": "https://plot.ly/~TestBot/495"
2+
"url": "https://plot.ly/~TestBot/340"
33
}

exceptions/matlab/matlab_basic_box_plot.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
boxplot([data1,data2])
1010

1111
%--PLOTLY--%
12-
response = fig2plotly(fig);
12+
response = fig2plotly(fig, 'filename', 'matlab-basic-box-plot');
1313
plotly_url = response.url;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"url": "https://plot.ly/~TestBot/494"
2+
"url": "https://plot.ly/~TestBot/166"
33
}

exceptions/matlab/matlab_line_and_scatter_basic.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
ylabel('Amplitude');
2828

2929
%--PLOTLY--%
30-
response = fig2plotly(fig);
30+
response = fig2plotly(fig, 'filename', 'matlab-line-and-scatter-basic');
3131
plotly_url = response.url;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"url": "https://plot.ly/~TestBot/496"
2+
"url": "https://plot.ly/~TestBot/164"
33
}

exceptions/matlab/matlab_seamount_scatter.m

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
zoom(2)
99

1010
%--PLOTLY--%
11-
response = fig2plotly(fig, 'strip', false); %<----- preserve MATLAB style!
11+
12+
% strip = false => preserve MATLAB style!
13+
14+
response = fig2plotly(fig, 'filename', 'matlab-seamount-scatter', 'strip', false);
1215
plotly_url = response.url;

published/api-docs/chart-types/box/matlab-basic-box-plot/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ fig = figure;
1111
boxplot([data1,data2])
1212

1313
%--PLOTLY--%
14-
response = fig2plotly(fig);
14+
response = fig2plotly(fig, 'filename', 'matlab-basic-box-plot');
1515
plotly_url = response.url;

published/api-docs/chart-types/line_exclusive/matlab-line-and-scatter-basic/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ xlabel('Time (s.)');
2929
ylabel('Amplitude');
3030

3131
%--PLOTLY--%
32-
response = fig2plotly(fig);
32+
response = fig2plotly(fig, 'filename', 'matlab-line-and-scatter-basic');
3333
plotly_url = response.url;

published/api-docs/chart-types/scatter_exclusive/matlab-seamount-scatter/matlab/code.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ scatter(x,y,s,c)
1010
zoom(2)
1111

1212
%--PLOTLY--%
13-
response = fig2plotly(fig, 'strip', false); %&lt;----- preserve MATLAB style!
13+
14+
% strip = false =&gt; preserve MATLAB style!
15+
16+
response = fig2plotly(fig, 'filename', 'matlab-seamount-scatter', 'strip', false);
1417
plotly_url = response.url;

test-published/api-docs/chart-types/box/matlab-basic-box-plot/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ fig = figure;
1111
boxplot([data1,data2])
1212

1313
%--PLOTLY--%
14-
response = fig2plotly(fig);
14+
response = fig2plotly(fig, 'filename', 'matlab-basic-box-plot');
1515
plotly_url = response.url;

test-published/api-docs/chart-types/line_exclusive/matlab-line-and-scatter-basic/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ xlabel('Time (s.)');
2929
ylabel('Amplitude');
3030

3131
%--PLOTLY--%
32-
response = fig2plotly(fig);
32+
response = fig2plotly(fig, 'filename', 'matlab-line-and-scatter-basic');
3333
plotly_url = response.url;

test-published/api-docs/chart-types/scatter_exclusive/matlab-seamount-scatter/matlab/code.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ scatter(x,y,s,c)
1010
zoom(2)
1111

1212
%--PLOTLY--%
13-
response = fig2plotly(fig, 'strip', false); %&lt;----- preserve MATLAB style!
13+
14+
% strip = false =&gt; preserve MATLAB style!
15+
16+
response = fig2plotly(fig, 'filename', 'matlab-seamount-scatter', 'strip', false);
1417
plotly_url = response.url;

tree.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@
698698
"test-matlab": "test-published/api-docs/chart-types/box/matlab-basic-box-plot/matlab/code.txt",
699699
"test-url": "https://plot.ly/~TestBot/340",
700700
"type": "script",
701-
"url": "https://plot.ly/~TestBot/491"
701+
"url": "https://plot.ly/~TestBot/340"
702702
}
703703
},
704704
"config": {
@@ -775,7 +775,7 @@
775775
"test-matlab": "test-published/api-docs/chart-types/bubble/matlab-bubble-chart/matlab/code.txt",
776776
"test-url": "https://plot.ly/~TestBot/169",
777777
"type": "script",
778-
"url": "https://plot.ly/~TestBot/486"
778+
"url": "https://plot.ly/~TestBot/169"
779779
},
780780
"mpl-7d-bubble": {
781781
"config": {
@@ -3011,7 +3011,7 @@
30113011
"test-matlab": "test-published/api-docs/chart-types/line_exclusive/matlab-basic-line/matlab/code.txt",
30123012
"test-url": "https://plot.ly/~TestBot/148",
30133013
"type": "script",
3014-
"url": "https://plot.ly/~TestBot/487"
3014+
"url": "https://plot.ly/~TestBot/148"
30153015
},
30163016
"matlab-line-and-scatter-basic": {
30173017
"config": {
@@ -3030,7 +3030,7 @@
30303030
"test-matlab": "test-published/api-docs/chart-types/line_exclusive/matlab-line-and-scatter-basic/matlab/code.txt",
30313031
"test-url": "https://plot.ly/~TestBot/166",
30323032
"type": "script",
3033-
"url": "https://plot.ly/~TestBot/490"
3033+
"url": "https://plot.ly/~TestBot/166"
30343034
},
30353035
"matlab-line-markers": {
30363036
"config": {
@@ -3049,7 +3049,7 @@
30493049
"test-matlab": "test-published/api-docs/chart-types/line_exclusive/matlab-line-markers/matlab/code.txt",
30503050
"test-url": "https://plot.ly/~TestBot/149",
30513051
"type": "script",
3052-
"url": "https://plot.ly/~TestBot/489"
3052+
"url": "https://plot.ly/~TestBot/149"
30533053
},
30543054
"matlab-line-style": {
30553055
"config": {
@@ -3068,7 +3068,7 @@
30683068
"test-matlab": "test-published/api-docs/chart-types/line_exclusive/matlab-line-style/matlab/code.txt",
30693069
"test-url": "https://plot.ly/~TestBot/150",
30703070
"type": "script",
3071-
"url": "https://plot.ly/~TestBot/488"
3071+
"url": "https://plot.ly/~TestBot/150"
30723072
},
30733073
"matlab-log-log-line": {
30743074
"config": {
@@ -3583,7 +3583,7 @@
35833583
"test-matlab": "test-published/api-docs/chart-types/scatter_exclusive/matlab-scatter-plot/matlab/code.txt",
35843584
"test-url": "https://plot.ly/~TestBot/165",
35853585
"type": "script",
3586-
"url": "https://plot.ly/~TestBot/492"
3586+
"url": "https://plot.ly/~TestBot/165"
35873587
},
35883588
"matlab-seamount-scatter": {
35893589
"config": {
@@ -3602,7 +3602,7 @@
36023602
"test-matlab": "test-published/api-docs/chart-types/scatter_exclusive/matlab-seamount-scatter/matlab/code.txt",
36033603
"test-url": "https://plot.ly/~TestBot/164",
36043604
"type": "script",
3605-
"url": "https://plot.ly/~TestBot/493"
3605+
"url": "https://plot.ly/~TestBot/164"
36063606
},
36073607
"mpl-complex-scatter": {
36083608
"config": {

0 commit comments

Comments
 (0)