Privacy in MATLAB®
How to set the privacy settings of Plotly graphs in MATLAB®.
Public Graphs
data = {...
struct(...
'x', [0, 2, 4], ...
'y', [0, 4, 2], ...
'type', 'scatter')...
};
plotly(data, struct('world_readable', true));
Private Graphs
data = {...
struct(...
'x', [0, 2, 4], ...
'y', [0, 4, 2], ...
'type', 'scatter')...
};
plotly(data, struct('world_readable', false));