photo

Soumya Sinha

MathWorks

Last seen: 5 years ago Active since 2019

Followers: 0   Following: 0

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

Statistics

All
MATLAB Answers

0 Questions
7 Answers

Cody

0 Problems
33 Solutions

RANK
15,712
of 300,369

REPUTATION
2

CONTRIBUTIONS
0 Questions
7 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,936

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
15,885
of 168,436

CONTRIBUTIONS
0 Problems
33 Solutions

SCORE
340

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Revival Level 1
  • First Answer
  • Solver

View badges

Feeds

View by

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

5 years ago | 0

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

5 years ago | 0

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

6 years ago | 0

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

6 years ago | 0

Answered
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

6 years ago | 0

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

6 years ago | 0

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

6 years ago | 1