Clear Filters
Clear Filters

Iterate over table one row at a time

94 views (last 30 days)
I would like to iterate over a table one row at a time (and then use the elements from the respective columns of that row). What would be the simplest way to do so?

Accepted Answer

Metin Akyol
Metin Akyol on 19 Jan 2022
This worked:
rows = height(strat_details);
for row = 1:rows
table(row,:)
end

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!