photo

Soumya Sinha

MathWorks

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

Followers: 0   Following: 0

Disclaimer: Any Advice or opinion posted here are my own, and in no way reflect that of MathWorks.

统计学

All
MATLAB Answers

0 个提问
7 个回答

Cody

0 个问题
33 个答案

排名
20,731
of 297,527

声誉
2

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,454

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
14,858
of 159,075

贡献数
0 个问题
33 个答案

评分
340

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
How to attach bldc motor with gear box?
Hi Ankit, As a possible solution to get rid of the errors in the model you can consider the following steps- Connect the neu...

4 years 前 | 0

已回答
asynchronous macjine coneection block error
Hi Ahmad, In Simulink, the asynchronous machine block is implemented as a current source. Thus, in order to connect it with an...

4 years 前 | 0

已回答
Accessing the index of a matrix element inside the cell array
Hello Surendra, Here in this case you have created a 1*2 Cell array in which first element is an array of numbers and the secon...

5 years 前 | 0

已回答
from .txt file to .mat file
Hi Roberta, You can know more about importing a text file to matlab script by following the link Importing .txt files It would...

5 years 前 | 0

已回答
Text files for export the data
Hello Rajesh, For storing data in the text files you can refer to the following link. Storing data in file

5 years 前 | 0

已回答
could anyone help me to solve the issue with respect to the code
I assume that for this case, since you only want idx value to change and not the values of A or B A = 1:7; B=length(A); for i...

5 years 前 | 0

已回答
Building the Fibonacci using recursive
The code for generating the fabonacci series numbers is given as - function [n] = abcd(x) if (x == 1 || x==0) n = x; ...

5 years 前 | 1