photo

ambuj aman


Last seen: ongeveer 2 jaar ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Reverse character array using recursion
function out = reversal(in) if length(in) <= 1 out = in; else out = [ reversal(in(2:end)) in(1) ]; ...

bijna 4 jaar ago | 0

Question


array and matrix multiplication condition
what is condition for array multiplication of two operands and matrix multiplication of two operands

ongeveer 4 jaar ago | 1 answer | 0

1

answer