Matrix Dimensions Solution Needed

 Accepted Answer

KSSV
KSSV on 9 Jun 2020
Edited: KSSV on 9 Jun 2020
Read about the function size. If A is your matrix, size give you the dimensions.
[m,n] = size(A) ; % m -rows, n - columns
[m,n,p] = size(A) ; %m- rows, n - columns, p - third diemsnion.

More Answers (0)

Categories

Products

Asked:

on 9 Jun 2020

Edited:

on 9 Jun 2020

Community Treasure Hunt

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

Start Hunting!