필터 지우기
필터 지우기

Making a three column matrix

조회 수: 17 (최근 30일)
Liliana Sierra
Liliana Sierra 2017년 12월 13일
답변: Liliana Sierra 2017년 12월 13일
Hi everyone! I am having trouble with the following: I have built a 31 row by 3 columns ceros matrix and I am trying to index values to each column, I want my first column to go from 140 to 440(this are lengths), but when trying to do so my values start from 0, then 140, then 440... Then in the second column I want the values of column 1 to appear because I need to compare how many lengths are being acumulated( this to later build a histogram..) I would very much appreciate your help!
  댓글 수: 4
Liliana Sierra
Liliana Sierra 2017년 12월 13일
yes I want column one to go from 140,141,142,143 I am trying this:
c=zeros(300,3); c(:,1)=[140:1:440]'; c(140,1)=140
Liliana Sierra
Liliana Sierra 2017년 12월 13일
it was a 300 row by 1 column matrix.. sorry I got confused when I first posted the question..

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

채택된 답변

Raul Andres Lopez Romero
Raul Andres Lopez Romero 2017년 12월 13일
Your code has only one error when you set the C matrix in 300 rows and 3 columns, and try to fill it with numbers starts in 140 to 440 with steps of 1 unit you have a 301 elements so, the C matrix needs to be 301 rows not 300. (if the number starts in 141 so, there is a 300 elements vector)
the code:
C=zeros(301,3);
C(:,1)=[140:1:440]'

추가 답변 (1개)

Liliana Sierra
Liliana Sierra 2017년 12월 13일
Thank you!

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by