Science, asked by anwaarshahanw38021, 7 months ago

The value of p after this command: A = [1:4; 5:8; 9:12]; p = size(A);

Answers

Answered by vivekranjan43811
2

Answer:

this is not done plzzz give full question

Answered by elsaterry4
8

Answer:

It will be a 2-element vector.

Explanation:

If we expand A this is what we'll have.

A =

    1     2     3     4

    5     6     7     8

    9    10    11    12

The size of this array will be 3   4   meaning there are 3 rows and 4 columns.Since we are asked the value of p,(3  4 ) ,which is a column vector that contains 2 elements (3 and 4)

Similar questions