Chcking in two rows

조회 수: 2 (최근 30일)
Giannakis Stoukas
Giannakis Stoukas 2015년 4월 15일
댓글: Jan 2015년 4월 16일
I have a matrix A and i want to check only two rows of this matrix,and i dont want to check all the matrix.For example A=[row1;row2;row3;row4;row5;row6] and i want to check and run only the rows 1 and 5.How i will do that?
  댓글 수: 1
Jan
Jan 2015년 4월 16일
You are aware, that we cannot know what "check and run" exactly means, are you?

댓글을 달려면 로그인하십시오.

답변 (1개)

Star Strider
Star Strider 2015년 4월 15일
I’m not sure what you’re doing, bu to address only the first two rows of ‘A’:
A(1:2,:);
  댓글 수: 2
Giannakis Stoukas
Giannakis Stoukas 2015년 4월 15일
I want to run and check only two specific rows of a matrix.I dont want to use two for loops to run every element,but only the elementse of two specific rows that i know
Star Strider
Star Strider 2015년 4월 15일
Clarifying, to address only rows 3 and 5:
A([3 5],:)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by