Tomoaki Takagi - MATLAB Central
photo

Tomoaki Takagi


Last seen: 1 day ago Active since 2023

Followers: 1   Following: 0

I have a Ph.D. and am currently a corporate AI researcher. I am also a member of the Japanese Society for Evolutionary Computation.

Programming Languages:
MATLAB
Spoken Languages:
Japanese
Pronouns:
He/him
Professional Interests:
Optimization, Genetic Algorithm, Multiobjective Optimization, Estimation, Visualization

Statistics

All
CodyMATLAB AnswersFile ExchangeFrom 12/23 to 01/25Use left and right arrows to move selectionFrom 12/23Use left and right arrows to move left selectionTo 01/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

RANK
44
of 156,475

CONTRIBUTIONS
10 Problems
1544 Solutions

SCORE
19,755

NUMBER OF BADGES
56

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Central Treasure Hunt Finisher
  • 3 Month Streak
  • Knowledgeable Level 1
  • Matrix Manipulation II Master
  • Computational Geometry I Master
  • Personal Best Downloads Level 1
  • GitHub Submissions Level 3
  • Indexing II Master
  • Cody5 Easy Master
  • Cody Challenge Master
  • ASEE Challenge Master

View badges

Feeds

Answered
三次元座標の点の色分けをする方法について
以下はいかがでしょうか M = readmatrix("centroidXYZ_volume_sample.csv"); figure; x = [M(:,1)]; %1列目を代入 y = [M(:,2)]; %2列目を代入 z = [M(:,3...

6 months ago | 2

| accepted

Answered
Vectorization for Two Nested for-loops
Try: A = [2 3 4; 5 2 1; 1 4 3]; B = [3 4 4; 4 2 1; 4 4 1]; C = repmat(A,3).*repelem(B,3,3); C = reshape(sum(C,2),3,3)'

7 months ago | 0

Answered
How to stop log axis shift
You can't plot 0=10^(-inf) on a log scale. The lower x limit must be a positive number. For example, try xlim([0.1 max(F)/60])...

7 months ago | 0

| accepted

Answered
EPS Figure Not Saving As Vectorized Plot For Illustrator
Which function are you using to save the image? If you were using saveas function, try using this instead: exportgraphics(gca,...

8 months ago | 0

Go to top of page