AKARSH KUMAR - MATLAB Central
photo

AKARSH KUMAR


Last seen: 約4年 前 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 回答

ランク
22,236
of 298,132

評判
2

コントリビューション
0 質問
10 回答

回答採用率
0.00%

獲得投票数
1

ランク
 of 20,538

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 160,453

コントリビューション
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年弱 前 | 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年弱 前 | 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年弱 前 | 0

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

5年弱 前 | 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年弱 前 | 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年弱 前 | 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年弱 前 | 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年弱 前 | 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年弱 前 | 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年弱 前 | 0