photo

ARVIND KUMAR SINGH


Last seen: más de 4 años hace Con actividad desde 2019

Followers: 0   Following: 0

Estadística

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

Ver insignias

Feeds

Ver por

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

más de 4 años hace | 0

Respondida
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 ...

más de 4 años hace | 0