Community Profile

Nicolaie Popescu-Bodorin


'Aurel Vlaicu' University of Arad, Arad, Romania

Active since 2017

Statistics

  • First Answer

View badges

Content Feed

View by

Answered
Getting imcontour matrix without the plotting
C = imcontour(IM, oneLevel); % will open a figure, whereas C = contourc(double(IM), [oneLevel oneLevel]); % will be sil...

7 years ago | 1

Answered
Extract non zero elements from 2D array
% Let A be a 2D Array and NZI the cell containing indices of non-zero elements on each column. % preallocation: sa = si...

7 years ago | 0

Answered
problem with Find function
is nothing wrong there! the code is working well! change the code accordingly to your intention!

7 years ago | 0

Answered
how to join 3 strings into single string?
res = strCell{1}; for k=2:length(strCell), res=[res '-' strCell{k}]; end; disp(res);

7 years ago | 0