photo

Prem Kumar Tiwari

MathWorks

2018년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
9 답변

순위
4,774
of 297,503

평판
10

참여
0 질문
9 답변

답변 채택
0.00%

획득한 표
1

순위
 of 20,449

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 159,017

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Use MATLAB to compute a 6-point moving average
movmean is a function in Matlab, detailed here. It can be used to quickly compute the moving average of a vector. If you have a...

대략 6년 전 | 0

답변 있음
Parameter Estimation with MATLAB code
The error is thrown because 'fun_temp' is not returning the value expected by sdo.optimize. SDO Optimize - A good read to lea...

대략 6년 전 | 0

답변 있음
How to generate a for loop which saves a figure at a given interval?
For Loops in Matlab - This is a good link to read and learn more about how "for" loops work in Matlab. I have two quick sugges...

대략 6년 전 | 0

답변 있음
Undefined function or variable 'Ybus' error ?
It's not very clear what 'load flow' refers to, in the question. It's apparent that you're talking about Simulink Models and the...

대략 6년 전 | 0

답변 있음
How do I call on a function created outside of the App Editor?
Hopefully you are using App Designer to create the GUI. You can refer to <https://in.mathworks.com/help/matlab/creating_guis/wri...

6년 초과 전 | 0

답변 있음
Error while writing code for bounding phase algorithm
It would've been great if you could've stated the error that Matlab shows. However, the issue is most probably because in a ca...

6년 초과 전 | 0

| 수락됨

답변 있음
Generalize centervalue to return the center value and a 2-element vector representing the row-column coordinate of the center. Call it centervalue2. >> centervalue2(magic(5)) ans = 13 >> [c loc] = centervalue2(magic(5)) c = 13 loc = 3 3
Hello Song, Following function will find out the center location of the given matrix mat. You can refer to the *[row, col]* ...

6년 초과 전 | 0

답변 있음
how to search an ordered array/ find bracket
Hello Alessandro, Since the array is sorted already, a good way to solve similar set of problems is popularly known as Binary...

6년 초과 전 | 1

| 수락됨

답변 있음
How to update structure and delete entries from structure?
Hi Mark, You can do something like the following : % create an empty variable finalResults = []; % keep concat...

6년 초과 전 | 0