I want to convert my experimental data to MATLAB 'loglog' scale and export them instead of plotting

I want to convert my experimental data to MATLAB 'loglog' scale and export them in a matrix instead of plotting them. Anyone know how to do that? I tried to follow the loglog.m file but couldn't get the answer. As you know loglog function is different from log10(abs(x)). Thanks

回答 (1 件)

Alex Burton
Alex Burton 2015 年 4 月 24 日
編集済み: Alex Burton 2015 年 4 月 24 日
If you want to export the data as another file type use this link: http://www.mathworks.com/help/matlab/import_export/supported-file-formats.html
When I write large amounts of data to a different file type after processing the data in matlab, I use csvwrite to export the data into a csv file format.
csvwrite(filename,M)
so for file location it will be ' c:\Users\(username)\....... ' and M will be the data that you've been plotting.

1 件のコメント

Ray
Ray 2015 年 4 月 24 日
Thanks, the real question is how to process the loglog data?!

サインインしてコメントする。

カテゴリ

質問済み:

Ray
2015 年 4 月 24 日

コメント済み:

Ray
2015 年 4 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by