Nir Rattner
MathWorks
Followers: 0 Following: 0
Statistiques
0 Questions
11 Réponses
RANG
5 091
of 300 840
RÉPUTATION
10
CONTRIBUTIONS
0 Questions
11 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
3
RANG
of 21 092
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 171 238
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
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 ...
plus de 11 ans il y a | 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...
plus de 11 ans il y a | 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...
plus de 11 ans il y a | 0
| A accepté
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...
plus de 11 ans il y a | 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...
plus de 11 ans il y a | 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...
plus de 11 ans il y a | 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...
plus de 11 ans il y a | 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...
plus de 11 ans il y a | 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...
plus de 11 ans il y a | 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 ...
plus de 11 ans il y a | 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...
plus de 11 ans il y a | 0

