photo

ARVIND KUMAR SINGH


Last seen: 4 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

All
  • Community Group Solver
  • Promoter
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Counting the number of digits
no_of_digits = numel(num2str(abs(A)));

4 years 前 | 0

已回答
Swap the first and last columns
function B = swap_ends(A) [~,col] = size(A); if col<2 B = A; else a = A(:,1); b = A(:,col); c = A(:,2:col-1); B =[b ...

4 years 前 | 0