MATLAB Trouble opening files
古いコメントを表示
Hello, I'm new to MATLAB and I created a cosine graph , saved it to a couple of files (my memory stick/ on the university network), but when I try to open it again from these files, it doesn't appear to be there. Can anyone offer me guidance? Thank you very much :)
3 件のコメント
Ameer Hamza
2020 年 3 月 9 日
編集済み: Ameer Hamza
2020 年 3 月 9 日
Did you save it as .fig file?
Isobel Munden
2020 年 3 月 10 日
Isobel Munden
2020 年 3 月 10 日
回答 (1 件)
Hornett
2024 年 6 月 18 日
0 投票
To retrieve your cosine graph in MATLAB, you can follow these streamlined instructions based on how you saved your graph:
- If you saved the graph as a .fig file, reopen it in MATLAB with the command openfig('filename.fig');. This allows you to view and interact with the figure as it was.
- In case you saved the plotting commands in a MATLAB script (.m file), simply rerun the script by typing its name into the MATLAB Command Window, like yourScriptName;. This will regenerate your graph.
- If the graph was exported as an image (e.g., .jpg, .png) or a PDF, you won't be able to edit it in MATLAB but can view it using any standard image viewer or PDF reader software.
Remember to check that you're searching in the right location where you saved your files, and ensure any external drives or network locations are accessible before trying to open your files.
カテゴリ
ヘルプ センター および File Exchange で Creating, Deleting, and Querying Graphics Objects についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!