Skip to content

Commit f7ba5a3

Browse files
committedOct 28, 2021
updates
1 parent 6a76434 commit f7ba5a3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
 

‎matlab/2021-08-04-3D-histogram.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: 3D Histograms
44
display_as: 3d_charts
55
order: 14
66
permalink: matlab/3D-histogram/
7-
thumnail_github: 3D-histogram.png
7+
thumnail_github: 3d-histogram.png
88
layout: base
99
language: matlab
1010
page_type: u-guide

‎matlab/2021-08-04-3d-scatter-plots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ y = [0.5*Y(:); 0.75*Y(:); Y(:)];
305305
z = [0.5*Z(:); 0.75*Z(:); Z(:)];
306306
scatter3(x,y,z)
307307
308-
fig2plotly(gcf)
308+
fig2plotly(gcf);
309309
```
310310

311311
<!--------------------- EXAMPLE BREAK ------------------------->

‎matlab/2021-08-04-sending-data-to-charts.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ page_type: u-guide
1414
## Overwrite chart data with new data
1515

1616

17-
```{matlab}
17+
<pre>
1818
plotly([1, 2], [1, 2], struct('filename', 'name-of-my-plotly-file'));
19-
```
19+
</pre>
2020

2121
<img src="http://i.imgur.com/VuobuN3.gif">
2222

@@ -26,9 +26,9 @@ plotly([1, 2], [1, 2], struct('filename', 'name-of-my-plotly-file'));
2626
## Add data to an existing trace
2727

2828

29-
```{matlab}
29+
<pre>
3030
plotly([1, 2], [1, 2], struct('filename', 'name-of-my-plotly-file', <b>'fileopt', 'extend'</b>));
31-
```
31+
</pre>
3232

3333
<img src="http://i.imgur.com/2LhVSX6.gif">
3434

@@ -37,9 +37,9 @@ plotly([1, 2], [1, 2], struct('filename', 'name-of-my-plotly-file', <b>'fileopt'
3737
## Add new traces to a chart
3838

3939

40-
```{matlab}
40+
<pre>
4141
plotly([1, 2], [1, 2], struct('filename', 'name-of-my-plotly-file', <b>'fileopt', 'append'</b>));
42-
```
42+
</pre>
4343

4444
<img src="http://i.imgur.com/RzrURdn.gif">
4545

0 commit comments

Comments
 (0)
Please sign in to comment.