how to pass row by row elements of a multidimensional array to a function
2 views (last 30 days)
Show older comments
how to pass row by row elements of a multidimensional array to a function
1 Comment
Answers (1)
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
See Also
Categories
Find more on C Shared Library Integration 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!