How to write code for this?

4 views (last 30 days)
Ara
Ara on 5 Jun 2022
Commented: Stephen Tete on 14 Nov 2022
Dear All,
I want to plot ROTI. Would you please help me? The ROTI is defined as the standard deviation of ROT, given by (<ROT^2> - <ROT>^2)^1/2 for each 5-min interval.

Accepted Answer

KSSV
KSSV on 5 Jun 2022
x = rand(100,1) ;
y = sqrt(mean(x.^2)-mean(x)^2)
y = 0.2657
  4 Comments
Ara
Ara on 5 Jun 2022
Edited: Ara on 6 Jun 2022
I think you are right. I have a column of time. How to write for every 5 min data and then get the std?
Stephen Tete
Stephen Tete on 14 Nov 2022
Kindly check the code again that is not how to calculate ROI

Sign in to comment.

More Answers (0)

Categories

Find more on Earth, Ocean, and Atmospheric Sciences in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!