anukriti dureha
Amity University
Followers: 0 Following: 0
Professional Interests: image processing,machine learning, cryptography,neural networks,signal proceesing,computer vision
Estadística
CLASIFICACIÓN
11.321
of 295.569
REPUTACIÓN
4
CONTRIBUCIONES
0 Preguntas
3 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
10.685 of 20.247
REPUTACIÓN
50
EVALUACIÓN MEDIA
5.00
CONTRIBUCIONES
2 Archivos
DESCARGAS
3
ALL TIME DESCARGAS
451
CLASIFICACIÓN
27.532
of 154.105
CONTRIBUCIONES
0 Problemas
15 Soluciones
PUNTUACIÓN
160
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
más de 9 años hace
Resuelto
Scoring for oriented dominoes
Given a list of ordered pairs, and the order they should be placed in a line, find the sum of the absolute values of the differe...
más de 10 años hace
Resuelto
Given a window, how many subsets of a vector sum positive
Given a vector: [1 0 -1 3 2 -3 1] and a window of 2, A sliding window would find: 1 + 0 = 1 0 - 1 = -1 ...
más de 10 años hace
Resuelto
How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...
más de 10 años hace
Resuelto
Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...
más de 10 años hace
Resuelto
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
más de 10 años hace
Resuelto
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
más de 10 años hace
remove a car from an image
here u go...i think this should help...creating a structring element should be helpful http://www.mathworks.in/help/vision/exam...
casi 11 años hace | 0
| aceptada
Resuelto
Make a run-length companion vector
Given a vector x, return a vector r that indicates the run length of any value in x. Each element in r shows how many times the ...
alrededor de 11 años hace
Resuelto
Flag largest magnitude swings as they occur
You have a phenomenon that produces strictly positive or negative results. delta = [1 -3 4 2 -1 6 -2 -7]; Marching thr...
alrededor de 11 años hace
Resuelto
Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...
alrededor de 11 años hace
Resuelto
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
alrededor de 11 años hace
Resuelto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
alrededor de 11 años hace
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
alrededor de 11 años hace
I need to use 'for loop' to read the names from a text file using 'fgetl' function. How do I do that?
try these 2 links...it may help <http://www.mathworks.in/help/matlab/ref/feof.html> <http://www.mathworks.in/help/matlab/ref...
más de 11 años hace | 0
convert Vector into matrix ?
hi alex, you can do this: i=1; ind=0; num=3; while num <=5 ind=ind+1; z{i}=A(ind:num); num=num+1; i=i+1;...
más de 11 años hace | 0
Enviada
translate_cog
translation of centre of gravity of a 2d image to the origin.
más de 11 años hace | 2 descargas |
Enviada
barycentric Coordinates
barycentric_coordinates will give the coordinates alpha, beta ,gama of the matrix face_point.
más de 11 años hace | 1 descarga |