Community Profile

photo

ARVIND KUMAR SINGH


Last seen: mer än 3 år ago Active since 2019

Followers: 0   Following: 0

Statistics

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

View badges

Feeds

View by

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

nästan 4 år 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 ...

nästan 4 år ago | 0