I want to read a data from the sinusoidal signal at a certain time t
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shivakumar
el 7 de Mzo. de 2014
Comentada: Shivakumar
el 10 de Mzo. de 2014
I want to read data from the sinusoidal signal for a certain time. I need the same kind of code for the distorted signal too. Sinusoidal signal is generated by an alpha-beta transformation block and it is seen in scope. Those sine wave signals are sent to workspace. The format is Structure with Time.I've included the model. The output ofthose two simouts is needed. This may be one of the basic questions. But I need help.
0 comentarios
Respuesta aceptada
Anuj
el 7 de Mzo. de 2014
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 time is 100001*1 array and you are simulating for 5 sec, this means 4.85 sec is (100000/5)*4.85 = 97000+1=97001th value in the array, So you can simply do
val=simout.signals.values(97001)
this will give you the value of signal at exact 4.85 s.
Regards
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!