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

Skip to content

Commit feeaf10

Browse files
committed
add filenames for new matlab examples
1 parent 1792984 commit feeaf10

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

hard-coded/chart-types/box/matlab-basic-box-plot/script.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', '>>>filename<<<');
1313
plotly_url = response.url;

hard-coded/chart-types/bubble/matlab-bubble-chart/script.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313

1414
% strip = false => preserve MATLAB style!
1515

16-
response = fig2plotly(fig, 'strip', false);
16+
response = fig2plotly(fig, 'filename', '>>>filename<<<', 'strip', false);
1717
plotly_url = response.url;

hard-coded/chart-types/line_exclusive/matlab-basic-line/script.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
plot(x,y1,x,y2);
99

1010
%--PLOTLY--%
11-
response = fig2plotly(fig);
11+
response = fig2plotly(fig, 'filename', '>>>filename<<<');
1212
plotly_url = response.url;

hard-coded/chart-types/line_exclusive/matlab-line-and-scatter-basic/script.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', '>>>filename<<<');
3131
plotly_url = response.url;

hard-coded/chart-types/line_exclusive/matlab-line-markers/script.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919

2020
% strip = false => preserve MATLAB style!
2121

22-
response = fig2plotly(fig, 'strip', false);
22+
response = fig2plotly(fig, 'filename', '>>>filename<<<', 'strip', false);
2323
plotly_url = response.url;

hard-coded/chart-types/line_exclusive/matlab-line-style/script.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
% strip = false => preserve MATLAB style!
1818

19-
response = fig2plotly(fig, 'strip', false);
19+
response = fig2plotly(fig, 'filename', '>>>filename<<<', 'strip', false);
2020
plotly_url = response.url;

hard-coded/chart-types/scatter_exclusive/matlab-scatter-plot/script.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
% strip = false => preserve MATLAB style!
1818

19-
response = fig2plotly(fig, 'strip', false);
19+
response = fig2plotly(fig, 'filename', '>>>filename<<<', 'strip', false);
2020
plotly_url = response.url;

0 commit comments

Comments
 (0)