photo

Muu


Last seen: 1 year ago Active since 2022

Followers: 0   Following: 0

none

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

Statistics

All
MATLAB Answers

0 Questions
2 Answers

Cody

0 Problems
58 Solutions

RANK
8,154
of 300,553

REPUTATION
6

CONTRIBUTIONS
0 Questions
2 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 21,024

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
8,174
of 169,635

CONTRIBUTIONS
0 Problems
58 Solutions

SCORE
846

NUMBER OF BADGES
6

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

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

3 years 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

3 years ago | 1