Community Profile

photo

ARVIND KUMAR SINGH


Last seen: 3 years ago Active since 2019

Statistics

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

View badges

Content Feed

View by

Answered
Counting the number of digits
no_of_digits = numel(num2str(abs(A)));

4 years ago | 0

Answered
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 ago | 0