![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/8063600_1589283701166_DEF.jpg)
Roger J
Followers: 0 Following: 0
Estadística
1 Pregunta
10 Respuestas
0 Problemas
3 Soluciones
CLASIFICACIÓN
1.534
of 297.016
REPUTACIÓN
44
CONTRIBUCIONES
1 Pregunta
10 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
8
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
66.066
of 157.725
CONTRIBUCIONES
0 Problemas
3 Soluciones
PUNTUACIÓN
40
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 to generate time dependent exponential terms in Simulink?
I did it with a "Matlab function" which you can add to the simulink diagram like any other element. When you double click the...
más de 4 años hace | 4
| aceptada
How to remove the input port from Gain block of Simulink?
If you are trying to drive the output with a constant value "0.5" then you can use something like You can add the "Constan...
más de 4 años hace | 1
| aceptada
how to read each text file using stread command
Aman, I think that you want to end the script with one large matrix that has data from all files. And you want to print only...
más de 4 años hace | 0
| aceptada
Medical Image Processing: X and Y coordinates switched around after using find and ind2sub?
Sam, This is a common misunderstanding. Please see if this link answers your question: https://www.mathworks.com/matlabcentra...
más de 4 años hace | 1
| aceptada
Pregunta
impulse response for difference equation
I'm trying to derive the impulse response for the following: y[n] = ay[n − 1] + x[n] − (a^N)x[n − N] I am using two diff...
más de 4 años hace | 1 respuesta | 0
1
respuestaHow to fill a large gap in a sine wave?
You can try something like the following: temp_reconstructed = fillgaps(tablecomplete.table_temperature,80,50); Where I ha...
más de 4 años hace | 1
| aceptada
How to call files with location names of >1 words?
You can use the following: >> location = lower(fname); % convert to lower case >> location = char(location); ...
más de 4 años hace | 0
how can i write a code with consecutive number between 0-100 and use this values inside my code?
x=0:100 % creates 101 elements from 0 to 100 y=x(12) % sets y to the value of x(12) x = 0.05 + (0.1-0.05).*[0:100]; % ...
más de 4 años hace | 0
How can I automatically let Matlab input the file in sequence?
Can you try the following: >> for i=1:1000 fn_read ="sample"+i+".wav"; % this is the file name to read from fn_rea...
más de 4 años hace | 1
| aceptada
Building array with custom function
If you don't assign the return values from a function call, then only the first is assigned to the default ans variable. ...
más de 4 años hace | 0
| aceptada
How do I calculate the area between a curve and a horizontal line?
Capture the return value from "area()", and then find the x values for the two points where p1e crosses hwMark. Now you can...
más de 4 años hace | 0
Resuelto
Check if equal
Return true if all the elements of an nD array are equal, false otherwise.
más de 4 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:...
más de 4 años hace