Need help creating a matrix from data in a for loop.

2 views (last 30 days)
I have 2 imbeded for statements with the first one being 24 hours and the next being 60 iterations perminute. I now need to make a 24x60 matrix to find max, min, etc, per hour, any feedback would be greatly appreciated.

Answers (1)

Walter Roberson
Walter Roberson on 26 Apr 2022
for hour = 0:23
for minute = 0:59
data(hour+1, minute+1) = appropriate value
end
end

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Tags

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!