Figureのコピーができない

グラフのタブ「編集(E)」内の「元に戻す」~「すべて選択」までの8個がグレーになって選択できません。
power pointに出力したいのですがどのようにしたらCtrl+Cでコピーできるようになりますか。
ソースコードは以下のようになっており、MATLAB Onlineを使用しています。
figure('Name','S');
fig=plot(Freq_fig,dS11_dB,'-k','LineWidth',2);
xlabel('Frequency [GHz]');
ylabel('Ref [dB]');
set(gca,'FontSize',16);

2 comentarios

Kei Otsuka
Kei Otsuka el 29 de Jun. de 2020
power pointに出力する対象は何ですか?グラフ自体を画像としてコピーしたいということでしょうか?
YS
YS el 29 de Jun. de 2020
グラフをpowerpointに貼り付けたいのですが、その際pngなどの画像形式ではなく、編集できる状態で貼り付けたいです。
デスクトップ版ではFigureのコピー(F)という選択肢があるのですが、Online版では見当たりません。

Iniciar sesión para comentar.

 Respuesta aceptada

Kei Otsuka
Kei Otsuka el 30 de Jun. de 2020

0 votos

現状、MATLAB Onlineからクリップボードへのコピーは出来ないようです。
画像として保存していただき、保存したファイルはMATLAB Driveで取り出す、というのが代替案になります。
類似質問が過去にあったようですので、参考までにリンク入れておきます。

Más respuestas (1)

TM
TM el 28 de Ag. de 2022

0 votos

クリップボードに貼り付ける時点でメタファイルなので
pngファイルで出力しても同じではないでしょうか?
fig = figure;
plot(1:10)
print(fig,'-dpng','figname.png','-r300')
figname.png→ダウンロードしてExcel online等で挿入→画像で貼り付けられます。
それか、Alt + PrintAcreen で画面コピーして、power pointで
トリミングして加工するとかでは駄目でしょうか?

Categorías

Más información sobre 環境と設定 en Centro de ayuda y File Exchange.

Productos

Etiquetas

Preguntada:

YS
el 28 de Jun. de 2020

Respondida:

TM
el 28 de Ag. de 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!