photo

Nishitha Ayyalapu

MathWorks

2013년부터 활동

Followers: 0   Following: 0

메시지

I'm an Application Support Engineer at Mathworks.
Professional Interests: Wireless Communications, Signal Processing

통계

All
MATLAB Answers

0 질문
12 답변

Cody

0 문제
22 답안

순위
2,089
of 301,513

평판
32

참여
0 질문
12 답변

답변 채택
0.00%

획득한 표
8

순위
 of 21,312

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
23,462
of 175,031

참여
0 문제
22 답안

점수
230

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 2
  • First Answer
  • Solver

배지 보기

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

12년 초과 전 | 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 ...

12년 초과 전 | 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...

12년 초과 전 | 1

| 수락됨

답변 있음
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...

12년 초과 전 | 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...

12년 초과 전 | 2

| 수락됨

답변 있음
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...

12년 초과 전 | 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...

12년 초과 전 | 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 ...

12년 초과 전 | 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...

12년 초과 전 | 0

| 수락됨

답변 있음
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)... ...

12년 초과 전 | 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...

12년 초과 전 | 2

| 수락됨

답변 있음
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]; ...

12년 초과 전 | 1