photo

Anuj


Actif depuis 2013

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

5 Questions
28 Réponses

Cody

0 Problèmes
77 Solutions

RANG
820
of 300 352

RÉPUTATION
96

CONTRIBUTIONS
5 Questions
28 Réponses

ACCEPTATION DE VOS RÉPONSES
60.0%

VOTES REÇUS
15

RANG
 of 20 928

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
8 617
of 168 212

CONTRIBUTIONS
0 Problèmes
77 Solutions

SCORE
770

NOMBRE DE BADGES
4

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 3
  • 3 Month Streak
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer
  • Commenter
  • CUP Challenge Master
  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
How to obtain phase shift in simulink
If you double click on sine block, you will see time (t) under parameters. You can select it to use external signal and in exter...

plus de 11 ans il y a | 0

Réponse apportée
I want to read a data from the sinusoidal signal at a certain time t
Hi Shiva, first you need to change sample time from 4.85 to -1 again in your simout (To workspace block). Now see, your simout t...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How to view code of a function
type in command window open fskmod

plus de 11 ans il y a | 6

Réponse apportée
Implement equation and solve variable
syms L ENOB=input('ENOB '); R=input('R '); B=input('B '); solve(ENOB - (log2 (((2^B)*((2^L+1)^(1/2))*R^(L+0.5))/pi^L))) ...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
create a vector of the even whole numbers between 31 and 75
A=[32:2:75]

plus de 11 ans il y a | 3

Réponse apportée
How to change the variable name in the loop
You should edit your code using {}code while posting the question, I can see one problem, there should not be *to* after *for* ,...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Check to see if this is correct.
There's no problem with the code, its fine. Just include a=input('a= ') ; x=input('x= '); after function and on the ...

plus de 11 ans il y a | 0

Réponse apportée
Command stem for the mass spring damper system
You can simply do stem(step(sys)) you can read the documentation about it. there is nice explanation about the command....

plus de 11 ans il y a | 0

Réponse apportée
Does anyone have model for induction motor characteristic using simulink ?
<http://www.mathworks.de/matlabcentral/fileexchange/index?utf8=%25E2%259C%2593&term=induction+motor Induction motors> you will g...

plus de 11 ans il y a | 0

Réponse apportée
calculation of successive diffrence
B = diff(A); B(find((B==2))=B(find(B==2)+1)+2

plus de 11 ans il y a | 0

Réponse apportée
reshape a matrix with a divisible of 10....
Try this, its very simple- n=10-mod(numel(A),10); if n==10; reshape(A,10,numel(A)/10) else A=padarray(A,[0,n],'...

plus de 11 ans il y a | 1

Réponse apportée
How do I create a square matrix based on user input?
One simple way for this can be, Suppose you have square matrix of order n. So you have n^2 elements. You can enter all the eleme...

plus de 11 ans il y a | 2

Réponse apportée
covert matlab program to simulink block
You can use *MATLAB Function*. Go through this- <http://www.mathworks.de/de/help/simulink/slref/matlabfunction.html?searchHighli...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
How can i transfer a data on a floating scope from simulink model into a figure plot in matlab ?
Suppose your saved your signal with the name 'x', you can use simplot(x) You will get the desired plot. Regards

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Need help with conversion program
There can be many solutions for this, smaller one also, but for a beginner level, this will sure work for you. d= in...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Help with array question.
function area = triAreaN(A,B) N = input('Input value for N'); i = input('Input value for i'); A=rand(2,N) A(find(A<0)...

plus de 11 ans il y a | 0

Réponse apportée
In simulink plot time range gets locked
Have You unchecked limit data points to last?

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Does anyone know where to find/add this block/swtich in simulink? (picture attached)
In signal routing you will find *multiport switch* Regards

plus de 11 ans il y a | 0

Réponse apportée
modelling simulink block diagram
Go to simulink lobrary and type *transfer fcn*.

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
I need help making a bandpass filter
you can use this function- <http://www.mathworks.de/de/help/dsp/ref/fdesign.bandpass.html fdesign.bandpass>

plus de 11 ans il y a | 1

| A accepté

Question


fft of a continuous signal
I am using Simulink, where I have a block whose output is a 3-phase current. I need to find fft of this current signal (which is...

plus de 11 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
How can I unbalance a synchronous machine?
The voltage supply equations can be changed to induce current imbalance. Suppose you are applying 3-phase voltage to the system ...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
heres my code.... getting an error ? Error using ==> horzcat CAT arguments dimensions are not consistent. Error in ==> practice at 3 result=[x(:),y(:),h(:)]; please help????????
The number of rows in x,y,h are not same, so they cannot be concatenated. check your matrix dimensions.

plus de 11 ans il y a | 0

Question


How can I avoid Algebraic loops In these equations
Hi, I Have two equations of the form- 1) dy/dt = A - By - Cdx/dt + Dx, and 2) dx/dt = E - Fx - Gdy/dt + Hy. I want ...

plus de 11 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
sine wave error in simulink
This is because you haven't mentioned the step size. For detailed explanation you can follow this link- <http://www.mathworks.de...

plus de 11 ans il y a | 0

| A accepté

Question


Error while reducing sample time
Hi, I have a simulink model containing some algebraic loops.Input to the system is sine wave. When Sample time of this sine wa...

presque 12 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
How to solve this error?
You are getting this error because your matrix dimensions are conflicting. Make sure that the dimensions of matrices in inputs a...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How can I feed an array of data to my Simulink model when an event occurs?
You can use callback functions in your model.. have you tried this ?<http://www.mathworks.in/help/simulink/ug/model-callbacks.ht...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Simulation data storage- help
What I did is I used 'to workspace' block instead of 'to file' and stored the variable in array format then var(end) solved my...

presque 12 ans il y a | 0

| A accepté

Charger plus