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 years 前 | 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 years 前 | 0