photo

Reza Ahmadzadeh


Con actividad desde 2011

Followers: 1   Following: 0

Mensaje

He received his Ph.D. degree in "Robotics, Cognition and Interaction Technologies". Currently, he is a postdoctoral researcher with the Institute for Robots and Intelligent Machines (IRIM) at Georgia Tech.
Professional Interests: Machine Learning, Artificial Intelligence, Human-Robot Interaction, Robotics, Visuospatial Skill Learning, Reinforcement Learning, Imitation Learning, global/local optimization methods

Estadística

All
MATLAB Answers

0 Preguntas
4 Respuestas

File Exchange

21 Archivos

Cody

12 Problemas
89 Soluciones

CLASIFICACIÓN
5.122
of 298.594

REPUTACIÓN
10

CONTRIBUCIONES
0 Preguntas
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
343 of 20.621

REPUTACIÓN
4.556

EVALUACIÓN MEDIA
4.20

CONTRIBUCIONES
21 Archivos

DESCARGAS
56

ALL TIME DESCARGAS
41937

CLASIFICACIÓN
2.615
of 161.780

CONTRIBUCIONES
12 Problemas
89 Soluciones

PUNTUACIÓN
1.200

NÚMERO DE INSIGNIAS
10

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Revival Level 1
  • Knowledgeable Level 1
  • Famous
  • Likeable
  • Personal Best Downloads Level 4
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • First Answer
  • CUP Challenge Master
  • Puzzler

Ver insignias

Feeds

Ver por

Enviada


when - when a function was introduced by MATLAB
This function shows the version in which the input function was introduced.

casi 6 años hace | 1 descarga |

4.7 / 5
Thumbnail

Resuelto


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

más de 7 años hace

Enviada


K-means clustering
Simple implementation of the K-means algorithm for educational purposes

más de 7 años hace | 2 descargas |

4.0 / 5
Thumbnail

Enviada


Expectation Maximization Algorithm
Expectation Maximization Algorithm

más de 7 años hace | 9 descargas |

4.0 / 5
Thumbnail

Resuelto


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

alrededor de 8 años hace

Enviada


Douglas-Peucker Algorithm
The Douglas–Peucker algorithm reduces the number of points in a curve.

más de 8 años hace | 7 descargas |

5.0 / 5
Thumbnail

Enviada


Stabilized Gram-Schmidt Orthonormal Method
Stabilized Gram-Schmidt Orthonormal Method

más de 8 años hace | 4 descargas |

5.0 / 5
Thumbnail

Resuelto


Which doors are open?
There are n doors in an alley. Initially they are all shut. You have been tasked to go down the alley n times, and open/shut the...

más de 8 años hace

Resuelto


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

más de 8 años hace

Resuelto


Create a row array using double colon operator
Create a row array from 9 to 1, using the double colon operator.

más de 8 años hace

Enviada


Collatz Conjecture
Test the Collatz Conjecture (a.k.a 3x+1 conjecture)

casi 9 años hace | 2 descargas |

5.0 / 5

Resuelto


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

casi 9 años hace

Enviada


Calculate T0 for your hardware and programming language accroding to CEC
Standard code provided by Congress on Evolutionary Computation (CEC)

casi 9 años hace | 1 descarga |

0.0 / 5

Respondida
Can I find out in which release a function was introduced?
I wrote a function that can give you the version a function was released. You can find it <http://it.mathworks.com/matlabcentral...

más de 9 años hace | 2

Enviada


Boyer–Moore majority vote algorithm
Boyer–Moore majority vote algorithm

más de 9 años hace | 1 descarga |

0.0 / 5

Enviada


Global Threshold computation using Otsu's Method
Global Threshold computation using Otsu's Method

casi 10 años hace | 1 descarga |

3.0 / 5

Resuelto


Add two hex numbers
Add two hex numbers

casi 10 años hace

Resuelto


Determine if input is divisible by three.
Given a positive integer, n, determine if n is divisible by 3. If yes, the function should output true. If no, false.

casi 10 años hace

Resuelto


Summation of array
Given an array, Find the sum of all of the elements in it Examples: Input x = [1 2 3 5; 4 5 6 7]; Output y is 33

casi 10 años hace

Resuelto


Vertically stack two vectors
Stack two vectors on top of each-other so that... if A = [1 5 3] and B = [8 6 4] then C = [1 5 3 ; 8 6 4]

casi 10 años hace

Resuelto


Determine the mean of matrix
Determine the mean of matrix without using mean function Hint: use simple algorithm

casi 10 años hace

Resuelto


Dealing with correlation results!
In this problem we would like to transform correlation coefficient MATRIX to a VECTOR which includes only unique elements of coe...

casi 10 años hace

Resuelto


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

casi 10 años hace

Resuelto


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

casi 10 años hace

Resuelto


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

casi 10 años hace

Enviada


Simple Sorting Methods
This submission includes four sorting algorithms and a test demo.

casi 10 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
How can I determine what add-ons I have installed?
To check if you have installed a specific toolbox, you can use the existing function in FileExchange called isToolboxAvailable ....

casi 10 años hace | 0

Respondida
how to test if toolbox exists?
You can use the existing function in FileExchange called <http://www.mathworks.com/matlabcentral/fileexchange/51794-istoolboxava...

casi 10 años hace | 0

Enviada


isToolboxAvailable
This function checks the availability of a specific toolbox on the installed MATLAB on your machine.

casi 10 años hace | 2 descargas |

4.3 / 5

Resuelto


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

más de 10 años hace

Cargar más