How can I plot certain columns of a matrix?

조회 수: 9 (최근 30일)
Maus
Maus 2017년 8월 25일
댓글: Leo Martinez-Silva 2020년 6월 15일
Hi, I have a matrix which consists of 6000 rows and 200 columns. I want to plot all rows and - e.g. - the columns 1 to 10, 25 und 150 to 155. How do I have to write the command to plot those columns? I tried things like
plot(A(:,1:10,25,150:155));
but of course it doesn't work. Can anybody help me?

채택된 답변

John D'Errico
John D'Errico 2017년 8월 25일
편집: John D'Errico 2017년 8월 25일
plot(A(:,[1:10,25,150:155]))
So pretty basic matrix indexing, as well as how to create a vector. You need to learn to create the vector of indexes. You can see that here:
[1:10,25,150:155]
Perhaps you need to read the getting started tutorials? Reading the manual is not a bad thing.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by