saving . . . saved How to print first and third row of a matrix has been deleted. How to print first and third row of a matrix has been hidden .
How to print first and third row of a matrix
Title
Question
how to print first and third row of a matrix (from matrix E)

Scilab Matrix-Operations 02-03 min 30-40 sec 04-05-19, 12:33 p.m. drkapilgovil

Answers:

Type disp(E(1,:)) 
         disp(E(3,:))
04-05-19, 12:34 p.m. siddharth11235@gmail.com
it is two step process. I need a one command to print first and third row 

04-05-19, 12:37 p.m. drkapilgovil

Login to add comment


a([1 3],:) to display 1 and 3 rows
04-05-19, 3 p.m. bapiraju


Log-in to answer to this question.