how to pass row by row elements of a multidimensional array to a function

1 view (last 30 days)
how to pass row by row elements of a multidimensional array to a function

Answers (1)

Ngoc Thanh Hung Bui
Ngoc Thanh Hung Bui on 15 Apr 2018
Edited: Ngoc Thanh Hung Bui on 15 Apr 2018
for i = 1:length(A) % A is your matrix
function(A(i,:));
end

Categories

Find more on Get Started with MATLAB 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!