Community Profile

photo

Ujjawal Barnwal


Last seen: 3 years ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
text file I/O
function charnum = char_counter(fname,character) fid = fopen(fname,'rt'); charnum = 0; if fid < 0 || ~ischar(character) ...

4 years ago | 0

Answered
How to find the position of a number in an array?
a = [7 8 8 2 5 6]; position = find(a==8)

4 years ago | 0