Prakash S R - MATLAB Central
photo

Prakash S R


Last seen: 대략 2년 전 2022년부터 활동

Followers: 0   Following: 0

통계

MATLAB AnswersFrom 04/22 to 03/25Use left and right arrows to move selectionFrom 04/22Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 질문
12 답변

순위
2,789
of 297,695

평판
21

참여
1 질문
12 답변

답변 채택
0.0%

획득한 표
1

순위
 of 20,466

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 159,380

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 2
  • First Answer

배지 보기

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

거의 3년 전 | 0

답변 있음
moving average at matrix data
Try movmean

거의 3년 전 | 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...

거의 3년 전 | 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...

거의 3년 전 | 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,...

거의 3년 전 | 0

| 수락됨

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

거의 3년 전 | 0

| 수락됨

답변 있음
plots with xlabel too long of a string for the plot
set(gca, 'XTickLabels', {'abc' 'def' 'ghi' 'jkl' 'mno' ..}) ; xtickangle(45)

거의 3년 전 | 0

| 수락됨

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

거의 3년 전 | 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 ...

거의 3년 전 | 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 ...

거의 3년 전 | 0

답변 있음
How to create this matrix shown in the screenshot?
toeplitz() is your friend! toeplitz([4 0 -2 0 0 0])

거의 3년 전 | 0

| 수락됨

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

거의 3년 전 | 0

| 수락됨

질문


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

거의 3년 전 | 답변 수: 1 | 1

1

답변