saving . . . saved matrix operation has been deleted. matrix operation has been hidden .
matrix operation
Title
Question
if size of the matrix is not known how to display second column of the matrix   

Scilab Matrix-Operations 03-04 min 30-40 sec 04-05-19, 11:36 a.m. rupspoken

Answers:

For a matrix A, to display the second row, type A(2,:)
04-05-19, 11:40 a.m. siddharth11235@gmail.com


-->a = [2 2; 9 8]
 a  =
 
    2.    2.  
    9.    8.  
 
-->a(:,2)
 ans  =
 
    2.  
    8. 
04-05-19, 11:41 a.m. trulyajays


A=[1 2 3;2 3 4;2 3 4];
A(:,2)
 ans  =

   2.
   3.
   3.

04-05-19, 3:41 p.m. drvkannan786


Log-in to answer to this question.