Community Profile

photo

Muu


Last seen: 1 month ago Active since 2022

Followers: 0   Following: 0

none

Programming Languages:
C++, C, MATLAB
Spoken Languages:
Japanese

Statistics

All
  • MATLAB Central Treasure Hunt Finisher
  • Introduction to MATLAB Master
  • Knowledgeable Level 1
  • First Answer
  • Promoter
  • Community Group Solver
  • Solver

View badges

Feeds

View by

Answered
how to saveas 20 figure as picture with different names ?
Use 'saveas(gcf, ['figure' num2str(d) '.png'])' For example: X=rand(1000); c=1; d=1; for i=1:50:1000 for c=1:50+c ...

1 year ago | 0

| accepted

Answered
Different output for find(X) and find(X<5)
>> X X = 4 5 6 0 -1 3 0 >> X>0 ans = 1 1 1 0 0 1 0

1 year ago | 1