photo

Nir Rattner

MathWorks

Attivo dal 2014

Followers: 0   Following: 0

Messaggio

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

Statistica

MATLAB Answers

0 Domande
11 Risposte

RANK
5.145
of 301.628

REPUTAZIONE
10

CONTRIBUTI
0 Domande
11 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
3

RANK
 of 21.366

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 175.858

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Knowledgeable Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
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 ...

quasi 12 anni fa | 2

Risposto
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...

quasi 12 anni fa | 0

Risposto
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...

quasi 12 anni fa | 0

| accettato

Risposto
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...

quasi 12 anni fa | 1

Risposto
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...

quasi 12 anni fa | 0

Risposto
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...

quasi 12 anni fa | 0

Risposto
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...

quasi 12 anni fa | 0

Risposto
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...

quasi 12 anni fa | 0

Risposto
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...

quasi 12 anni fa | 0

Risposto
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 ...

quasi 12 anni fa | 0

Risposto
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...

quasi 12 anni fa | 0