Polar plot for time representation

I have some data collected every minute for a year. I am trying to make a circular plot (maybe a polar plot?) to represent the circadian trends on a kind of a crooked 24-hr "clock" but get nothing usable at all. Any ideas how to fit that into anything circular?

1 件のコメント

Ellen White
Ellen White 2022 年 7 月 11 日
Did you ever find a solution to this? Currently working on a similar problem

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

回答 (1 件)

Chunru
Chunru 2022 年 7 月 12 日

0 投票

t = 0:(60*24*365); % time in min
x = 1.5 + sin(2*pi*t/1000); % data
polarplot(t/(60*24)*2*pi, x); % 1 day for 2pi radian

カテゴリ

ヘルプ センター および File ExchangePolar Plots についてさらに検索

質問済み:

2018 年 1 月 1 日

回答済み:

2022 年 7 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by