필터 지우기
필터 지우기

Assigning count values to the column of a matrix

조회 수: 3 (최근 30일)
Iremsu Savas
Iremsu Savas 2019년 1월 27일
답변: Stephen23 2019년 1월 27일
Hello,
I have a matrix A with the size 29x3 and I want to fill third column with the numbers from 29(the max lenght) to 1.
Is there a possible way to do it without using loops?
Regards

채택된 답변

Stephen23
Stephen23 2019년 1월 27일
Either one of these, depending on the order that you want:
A(:,3) = 1:29
A(:,3) = 29:-1:1

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by