![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/8584048_1522127473237_DEF.jpg)
Luke Pretzie
Followers: 0 Following: 0
Estadística
0 Problemas
18 Soluciones
CLASIFICACIÓN
83.458
of 297.016
REPUTACIÓN
0
CONTRIBUCIONES
3 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
66.67%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
25.095
of 157.725
CONTRIBUCIONES
0 Problemas
18 Soluciones
PUNTUACIÓN
190
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
How Long Does Matlab trial version last
I myself am not entirely sure, but I believe the trial period is approximately one month, or 30 days to be exact.
más de 7 años hace | 0
Pregunta
Raster Plot & Spike Train
Hello all, I am currently working on a project that would give me a Raster Plot and histogram. However, this seems to be very...
alrededor de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
n point symmetric weighted moving average filter
The following is a hard coded 3-point weighted symmetric moving average filter: ECG(:,1) = time; %initialization of...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
5 point asymmetric moving average using past values
Hello everyone, and thank you in advance for taking the time to inspect my question. I am currently working on a code that wi...
más de 8 años hace | 1 respuesta | 0
1
respuestaResuelto
Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...
más de 8 años hace
Resuelto
Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...
más de 8 años hace
Resuelto
Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...
más de 8 años hace
Resuelto
Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.
más de 8 años hace
Resuelto
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
más de 8 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 8 años hace
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...
más de 8 años hace
Resuelto
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
más de 8 años hace
Resuelto
ASCII Code
Using matlab, give the symbol that is associated with ASCii code 90.
más de 8 años hace
Resuelto
Vector with a repeated entry
Create a row vector of length n, filled with 4's. For example, if n = 3, output = [4 4 4] Hint: Search for the function...
más de 8 años hace
Resuelto
If you have matrix A, create matrix B using matrix A as an "element"
A = [1 2 3 4; 5 6 7 8] B = [1 2 3 4 1 2 3 4; 5 6 ...
más de 8 años hace
Resuelto
Given the variable x as your input, multiply it by four, then divide it by two. Then put the result in y.
If x = 5, y = 4*5/2 = 10
más de 8 años hace
Resuelto
Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416
más de 8 años hace
Resuelto
Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250
más de 8 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 8 años hace