How to convert data into a Rainflow histogram/table
Show older comments
Let’s say that I have a column of 3600 different values i y axis. And 3600 seconds in x axis. These values in y axis are stresses applied to a material and they change in amplitud. How do I make a Rainflow chart and histogram?
Answers (1)
% Sample time-history data with 3600 values
data = rand(1,3600);
% Convert the raw data into rainflow cycles
[cycles,mn,mx] = rainflow(data);
% Plot the rainflow cycles
plot(cycles);
% Create a histogram of the data
histogram(data);
1 Comment
Erfan Parviz
on 28 Dec 2022
Categories
Find more on Vibration Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
