Prakash S R
Followers: 0 Following: 0
Statistik
RANG
2.760
of 295.448
REPUTATION
21
ANTWORTZUSTIMMUNG
0.0%
ERHALTENE STIMMEN
1
RANG
of 20.227
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.872
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Intersection of row and column
I assume you are trying to form a new 3x3 matrix G from rows and columns of H. You can do this by specifying the indices of inte...
mehr als 2 Jahre vor | 0
plotting columns in a table
How are you "importing" it? If you use importdata(), the string columns and the double columns go into separate arrays, as do th...
mehr als 2 Jahre vor | 0
HOW TO GROUP THE ELEMENTS OF AN ARRAY
A more "arithmetic" approach: So you want to take a 252x51 matrix X and produce a 84x51 matrix Y, right? I would suggest premul...
mehr als 2 Jahre vor | 0
how to plot y double right axis linear graph?
What exactly is the problem? I'm guessing that you are bothered by the fact that the line connecting the points is all squiggly,...
mehr als 2 Jahre vor | 0
| akzeptiert
Generating an Echo for an Audio Signal using Convolution
z is simply the delayed input (echo). You forgot to add echo to the input! You are listening to the echo component only, not sou...
mehr als 2 Jahre vor | 0
| akzeptiert
plots with xlabel too long of a string for the plot
set(gca, 'XTickLabels', {'abc' 'def' 'ghi' 'jkl' 'mno' ..}) ; xtickangle(45)
mehr als 2 Jahre vor | 0
| akzeptiert
How to combine two matlab functions to get only one?
Help me understand: You want to call ToF for two points that correspond to two different values of e or TA or both, and those va...
mehr als 2 Jahre vor | 0
How to generate random numbers with constraint?
If all you want is that the numbers are randomly drawn from the uniform distribution between 0.05 and 1.2, you could generate a ...
mehr als 2 Jahre vor | 0
using for loops to calculate compound interest with yearly contributions
The problem is as follows: You are thinking of y(P) as "y-as-a-function-of-P'. But when you write y(P), Matlab interprets it ...
mehr als 2 Jahre vor | 0
How to create this matrix shown in the screenshot?
toeplitz() is your friend! toeplitz([4 0 -2 0 0 0])
mehr als 2 Jahre vor | 0
| akzeptiert
How can I create a unique matrix by removing rows with similar elements?
Hi, You sort the rows so they are order-independent, then you can use unique() with the 'rows' option. However, the results are...
mehr als 2 Jahre vor | 0
| akzeptiert
Frage
bandpass() uses filtfilt(), not filter()!
More a heads-up than a question: The Signal Processing Toolbox function bandpass() designs and applies a filter on the input si...
mehr als 2 Jahre vor | 1 Antwort | 1