photo

Vishwajith Upendra


2011년부터 활동

Followers: 0   Following: 0

메시지

통계학

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
changing the name of a variable
Here is a sample code which does what you want. Try it. for i=1:5 x=num2str(i); % Converts number to strin...

대략 13년 전 | 1

답변 있음
Assigning values ta set of points in 2d image
for i=1:1:numel(x) B(x(i),y(i))=1 end This should do it. Number of elements in x and y are gonna be the same. So, took one o...

대략 13년 전 | 0