필터 지우기
필터 지우기

deletion of first row in the matrix

조회 수: 3 (최근 30일)
ARJUN K P
ARJUN K P 2015년 9월 16일
답변: Thorsten 2015년 9월 16일
my matrix is the form:
Ki = [25 35, 56 41,85 78] i want delete the first row data..
answer like:
56 41, 85 78

채택된 답변

Thorsten
Thorsten 2015년 9월 16일
Use ; to separate rows
Ki = [25 35; 56 41; 85 78];
Delete first row
Ki(1,:) = [];

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by