Matlab Online flipping figures on its own
1 回表示 (過去 30 日間)
古いコメントを表示
I've recently run into a weird problem when using MATLAB online, I only ever just run code and scripts and haven't messed with any setting but one day my figures have started displaying themselves upside down. The only way I've been able to get it to temporarily correct itself is by clicking the figure->camera tools->any of the "camera motion tools" options. Does anyone know how to fix this?

1 件のコメント
Diana Akkermans
2021 年 10 月 1 日
I have the same problem with MATLAB online. Thanks for the temporarily solution. I hope its fixed in a new version.
採用された回答
Anshika Chaurasia
2021 年 10 月 8 日
Hi,
The possible workaround for the issue:
fig = figure;
ax = axes(fig);
plot(ax, data);
triggerFigureView(fig)
Note: Above mentioned plotting resolves the issue for the current MATLAB Online Session. Hence, when starting a new session the issue reappears. Thus 'triggerFigureView' would need to be executed every time a new Session is started.
0 件のコメント
その他の回答 (1 件)
Anshika Chaurasia
2021 年 10 月 5 日
Hi,
You can try clearing browser cookies then login again.
For the best overall experience, Chrome is the recommended browser. For supported versions of the browsers, please refer to the following document.
In case, the issue persists then share following information so that we can replicate the issue:
- Operating System
- Browser and it's version
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!