필터 지우기
필터 지우기

Plotting the boundaries of an object

조회 수: 2 (최근 30일)
Said Rahal
Said Rahal 2012년 7월 12일
I read that the syntax f plotting a boundary of an object is the following:
plot (t(:,2),t(:,1),'g','Linewidth',2)
where t is a boundary. I ran it in MATLAB and it worked. However I did not know why we input the first two arguments in that manner.
Can any share his knowledge about that?
Thanks for your time and attention

채택된 답변

Walter Roberson
Walter Roberson 2012년 7월 12일
plot(X1,Y1,...,Xn,Yn) plots each vector Yn versus vector Xn on the same axes.
Accessing Multiple Elements
For the 4-by-4 matrix A shown below, it is possible to compute the sum of the elements in the fourth column of A by typing
A = magic(4);
A(1,4) + A(2,4) + A(3,4) + A(4,4)
You can reduce the size of this expression using the colon operator. Subscript expressions involving colons refer to portions of a matrix. The expression
A(1:m, n)
refers to the elements in rows 1 through m of column n of matrix A. Using this notation, you can compute the sum of the fourth column of A more succinctly:
sum(A(1:4, 4))
Thus, the syntax you are using is to extract columns from your array and use them as the X and Y for plotting purposes.
  댓글 수: 2
Said Rahal
Said Rahal 2012년 7월 12일
Thank you Walter. So Can I conclude that by definition the second column of the matrix that defines a boundary is X and the first column is Y.
Walter Roberson
Walter Roberson 2012년 7월 12일
In that matrix, yes. Not generally in matrices, though.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by