![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/5441246.jpg)
Nir Rattner
MathWorks
Followers: 0 Following: 0
I'm an Application Support Engineer at Mathworks.
In my free time I like to play guitar, cook, and build robots.
Professional Interests: MATLAB, robotics, application development
Estadística
0 Preguntas
11 Respuestas
CLASIFICACIÓN
5.001
of 297.016
REPUTACIÓN
10
CONTRIBUCIONES
0 Preguntas
11 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
3
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
of 157.725
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Find average based on multiple columns of data structure
Assuming your data is stored in a matrix, you can use the "unique" and "accumarray" functions. First, it seems that you want to ...
más de 10 años hace | 2
Plot magnitude on y-axis and time on x-axis read from an excel file
You can use the Import Data tool in the Home tab to import your data into MATLAB. At that point you can use the "datenum" functi...
más de 10 años hace | 0
Extract element from column vector with condition
You can use the “find” function to find the indices of your zeros and then subtract each index by the one before to make sure th...
más de 10 años hace | 0
| aceptada
speeding up nested for loops
I'm assuming A, B, C, and D are functions considering the 0 valued arguments. Typically, vectorizing your code should be a fi...
más de 10 años hace | 1
for finding peak. i tried findpeaks(). but its not working
Assuming that the image provided is the input format for the signal, you can use the “find” function with a threshold to get all...
más de 10 años hace | 0
Is there a function in matlab that is equivalent to STL multimap in C++
I could not find a direct equivalent to STL multimap in MATLAB, however, you can use cell arrays with two columns to make key-va...
más de 10 años hace | 0
Assign rename of structure with input command
You can use the “eval” function to effectively convert a string to a variable name: S=input('Enter a name for the structure...
más de 10 años hace | 0
summing random numerical excel data in matlab?
You can use the “xlsread” function to read in the data from your Excel spreadsheet. Once the data is imported, you can use stand...
más de 10 años hace | 0
How to generate a Sine with parameter input and output pre determined?
Given a sinusoid of the form “y = A * sin(w * x)”, I’m assuming you want the function to take “A” and “w” as parameters. The cod...
más de 10 años hace | 0
increasing index in for loop
There are a few ways you can do this include if-else statements or switch-case statements to determine which value to choose to ...
más de 10 años hace | 0
Creating a GUI which contains another GUI
The best way to create a dynamic GUI is to change the “Visible” property of uicontrol elements to display and hide them as neede...
más de 10 años hace | 0