AKARSH KUMAR - MATLAB Central
photo

AKARSH KUMAR


Last seen: 4 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

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

0 个提问
10 个回答

排名
18,064
of 298,180

声誉
2

贡献数
0 个提问
10 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,546

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 160,541

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
if-block_in_switch_case
Yes you can, inside any case you can write if else statements.

5 years 前 | 1

已回答
Reading multiple bytes on a specific address of an sensor on an arduino at once
m is the arduino object dev = device (m,'I2CAddress',startingRegisterAddress) data = readRegister(dev, startingRegisterAddress...

5 years 前 | 0

已回答
How to check success of inputParser.parse method
As far as my knowledge is concerned there is no inbuilt parser check, you can check by putting breakpoints in your code and chec...

5 years 前 | 0

已回答
creating an string array
Your question is not clear, can you please explain it more clearly.

5 years 前 | 0

已回答
String comparison in table
The reason is you are not comparing a single value but multiple values in this case two values of the table. Like in your case ...

5 years 前 | 0

已回答
Improving an if else function
I don't think this if else condition could further be reduced, try to check in your other part of code.

5 years 前 | 0

已回答
How to Use for Loop Variable outside loop
You can try defining/declaring the variable outside the loop. Then it would work I feel.

5 years 前 | 0

已回答
Calculate the roots of quadratic ax^2 + bx + c = 0. For the program, consider the discriminant D, D = b^2 − 4ac
You can refer to this link and use the function to solve higher degree polynomials as well https://www.mathworks.com/help/symbo...

5 years 前 | 0

已回答
Approximating square root function using loops
function estSqrt= ApproxSqrt(a,tol) if a<0 msg='Can't calculate square root of negative number'; error(msg); else if a==...

5 years 前 | 0

已回答
How could I use MATLAB to solve for x with this equation, 0=a*x^(3)+b*x^(-1)+c.
Refer the docmentation https://www.mathworks.com/help/symbolic/solve.html

5 years 前 | 0