photo

Tomoaki Takagi


Last seen: Today Actif depuis 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

Statistiques

All
  • MATLAB Central Treasure Hunt Finisher
  • MATLAB Flipbook Mini Hack Participant
  • 3 Month Streak
  • Knowledgeable Level 1
  • Cody Challenge Master
  • ASEE Challenge Master
  • Personal Best Downloads Level 1
  • GitHub Submissions Level 3
  • Matrix Manipulation I Master
  • Sequences And Series II Master
  • Indexing I Master
  • Scholar

Afficher les badges

Feeds

Afficher par

A résolu


Average of even-numbered columns
Given a vector, find the average of even-numbered columns. e.g x = [ 4 6 8 9 1 2 7 ] y = ( 6 + 9 + 2 ) / 3

1 jour il y a

A résolu


Delete the column with all 0 !
Delete the column with all 0 data in a matrix(x). e.g. input x = 1 0 0 4 5 0 7 0 ...

1 jour il y a

A résolu


Average of odd values
Find the average of odd values in given a matrix. e.g x=[ 4 11 8 ; 9 2 7 ] y =( 11 + 9+ 7 ) / 3

1 jour il y a

A résolu


Replace Nan!
Replace Nan in the given vector(v) with 9999.

1 jour il y a

A résolu


Solve the equation. Find X.

1 jour il y a

A résolu


Simple sum 1

1 jour il y a

A résolu


Problem 44444 !!! free beer everyone
just say hallelujah to solve this problem

1 jour il y a

A résolu


what's my tax amount this year ?
given an annual salary x and a tax rate i calculate the amount that you have to pay.Example x = 70000; i=.10 y_correc...

1 jour il y a

A résolu


Convert Hard Drive marketing sizes to actual data sizes
Hard drive sizes are typically marketed using the decimal meaning of prefixes, whereas RAM uses binary meanings. For example: ...

1 jour il y a

A résolu


Divisible by 21
Write a function to determine if a number is divisible by 21.

1 jour il y a

A résolu


Find the maxmum value of N*N Matrix
Input x=[1 2 3; 4 5 6; 7 8 9] output: y=9

1 jour il y a

A résolu


Find the minimal value in N*N Matrix
Suppose that we have N by N matrix, we try to find the minimal value in that matrix. examples: Input A=[1 2 3 5 6;52 58 56 45...

1 jour il y a

A résolu


number play

1 jour il y a

A résolu


non-repitition of numbers in a vector

1 jour il y a

A résolu


Product of elements in a column

1 jour il y a

A résolu


Double the length of the vector

1 jour il y a

A résolu


Half the length of the vector

1 jour il y a

A résolu


find the index of a number

1 jour il y a

A résolu


Seperate 2nd column in a matrix

1 jour il y a

A résolu


Let's get back to school, and create multiplication tables
For a given range, create multiplication tables. (start is always < endno) Example start = 17 endno = 19 Then, ...

1 jour il y a

A résolu


Average Grade
Given a 1x5 vector presents the grades of a student on five tests. Calculate the average grade of that student.

1 jour il y a

A résolu


Convert from integer to binary
if true % decimalToBinaryVector(x) end

1 jour il y a

A résolu


Create tangent function out of sin and cos
Please don't use tan(x) directly

1 jour il y a

A résolu


find the 'M'
for an input x, return 1 at the location of the letter 'M'

1 jour il y a

A résolu


Where is the number that you want to find?
For a given matrix A, find where the input number x appears. Do this task by returning the vector which contains the row and th...

1 jour il y a

A résolu


determine if
determine if the elements of a matrix is a nan and return true

1 jour il y a

A résolu


Calculate inverse matrix in m by n matrix
x=(1:10)' y=roundn(2*x+7*rand(size(x)),-1) a*x=y Estimate a using inverse matrix calculation. This is principle of li...

1 jour il y a

A résolu


Save variables
a=[1] Save variable a that is located in workspace into current folder. File name should be 'a.mat'

1 jour il y a

A résolu


How to permute given 3d matrix?
A(:,:,1)=[1 3] A(:,:,2)=[2 2] A(:,:,3)=[4 3] Change rows to columns and columns to rows, similar to transpose. Resul...

1 jour il y a

A résolu


Where is 1?
There is a 3d matrix [A] that consist of many zeros and only one. A=zeros(100,100,100); i=randi(100); j=randi(100); k=randi(...

1 jour il y a

Charger plus