Egon Geerardyn
Vrije Universiteit Brussel
Followers: 0 Following: 0
Estadística
0 Preguntas
6 Respuestas
0 Problemas
10 Soluciones
CLASIFICACIÓN
2.148
of 295.673
REPUTACIÓN
30
CONTRIBUCIONES
0 Preguntas
6 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
9
CLASIFICACIÓN
of 20.262
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
37.634
of 154.257
CONTRIBUCIONES
0 Problemas
10 Soluciones
PUNTUACIÓN
100
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
Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0
casi 13 años hace
Resuelto
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
casi 13 años hace
Resuelto
Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...
casi 13 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...
casi 13 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 ...
casi 13 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...
casi 13 años hace
Resuelto
Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...
casi 13 años hace
Resuelto
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...
casi 13 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
casi 13 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:...
casi 13 años hace
Nested for-loops too slow
You might want to work more on that code manually before implementing it like that. As the only thing that really matters is N, ...
más de 13 años hace | 1
| aceptada
Adaptive Filter for System Identification.
If you're trying to model a continuous time system, I'd recommend making your model for continuous time instead of discrete time...
más de 13 años hace | 0
Image Background Removal
You can try vectorizing that code, but that will be most likely destroy any short-circuiting you have in there. Just by the top...
casi 14 años hace | 0
| aceptada
Can I install an earlier version of MATLAB on a system with a current version of MATLAB?
1) Saying your OS is 32 bit will most likely work. Most 32 bit software should work on a 64 bit OS (unless you are fiddling with...
casi 14 años hace | 1
Grayscaled Images to RGB
If you just need red, green or blue, you can use the following code: I = im2double(imread('cameraman.tif')); %image in double...
casi 14 años hace | 2
2nd order polynomial fitting with NaNs
Try indexing your data points to your non-NaN-points Let's just work on an example: %% just generating data x = 1:10; ...
casi 14 años hace | 5
| aceptada