Nishitha Ayyalapu
MathWorks
Followers: 0 Following: 0
Estadística
0 Preguntas
12 Respuestas
0 Problemas
22 Soluciones
CLASIFICACIÓN
2.089
of 301.517
REPUTACIÓN
32
CONTRIBUCIONES
0 Preguntas
12 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
8
CLASIFICACIÓN
of 21.314
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
23.303
of 175.060
CONTRIBUCIONES
0 Problemas
22 Soluciones
PUNTUACIÓN
230
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
find values in a matrix above a threshold
Let "M" be the matrix with its 1st column as month, 2nd as Day, 3rd as year, 4th as discharge. Since "threshold" is only over di...
más de 12 años hace | 1
Help me sketch the sprectrum of this signal.
doc angle doc real doc imag 1.) For Phase Respone plot(f,angle(X)); 2.) To plot real and imaginary parts ...
más de 12 años hace | 0
How can I change multiple lines in a text file?
Here is the working code. Small tweaks to your existing code solved the problem. 1.) Generate a random only for new type of m...
más de 12 años hace | 1
| aceptada
How can I use a fonction result in a new script.
doc function Example function result = Addition(X,Y) result = X+Y; end Now in any other script you can jus...
más de 12 años hace | 0
How can I calculate and plot the spectral power density of Square Root Raised Cosine Pulse using fft?
I edited your inital code to go from single-sided spectrum to two-sided. Fs = 10; %Sampling frequency T = 1/Fs; %Symbol...
más de 12 años hace | 2
| aceptada
How can I calculate and plot the spectral power density of Square Root Raised Cosine Pulse using fft?
However to answer how to get negative frequency axis: 1.) Do fftshit 2.) change frequency axis accordingly. Below is th...
más de 12 años hace | 0
hwo to solve linear time variant differential equations?
It actually depends on whether you want a numerical or a symbolic solution. 1.) For numerical solution These would be help...
más de 12 años hace | 1
how can I use Newton's method to find the extremum with error < 10^-4 ?
These functions can do the job: Derivative-free approach: fminsearch Derivate based approach fminunc You can ...
más de 12 años hace | 0
Recreating a multiport switch with code
1.) Store each data stream as a column vector (just the values). Since time stamps for all the streams are starting at 0 and sam...
más de 12 años hace | 0
| aceptada
Matrix manipulation, turning a column vector into a square matrix?
This should do the job if you have four column vectors: data = [reshape(data(:,1),100,100) reshape(data(:,2),100,100)... ...
más de 12 años hace | 0
how to import a file in MATLAB?
You could use readtable Lets say your data is in testdata.txt then following would create a table "T" with 7 column...
más de 12 años hace | 2
| aceptada
Deleting complete row having negative integer at any position
Here is an example code that would help: A = [22 33 43 55; 11 22 -33 44; 55 22 33 -44; 99 88 77 66]; ...
más de 12 años hace | 1


