Tomoaki Takagi
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.
MATLAB
Spoken Languages:
Japanese
Pronouns:
He/him
Professional Interests:
Optimization, Genetic Algorithm, Multiobjective Optimization, Estimation, Visualization
Statistics
RANK
3 993
of 295 448
REPUTATION
12
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
17 038 of 20 227
REPUTATION
4
AVERAGE RATING
0.00
CONTRIBUTIONS
4 Files
DOWNLOADS
9
ALL TIME DOWNLOADS
43
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
三次元座標の点の色分けをする方法について
以下はいかがでしょうか M = readmatrix("centroidXYZ_volume_sample.csv"); figure; x = [M(:,1)]; %1列目を代入 y = [M(:,2)]; %2列目を代入 z = [M(:,3...
4 månader ago | 2
| accepted
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)'
5 månader ago | 0
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])...
5 månader ago | 0
| accepted
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,...
6 månader ago | 0