Effacer les filtres
Effacer les filtres

how to extract data in the structure to individual vector variable?

1 vue (au cours des 30 derniers jours)
sivalogan satchithanandamoorthy
i have 1x1 data obtained from time vs signal graph. i want to separate time and signal and assign them into different varable.
  2 commentaires
Walter Roberson
Walter Roberson le 18 Fév 2016
Which routine did you call to obtain your data?
sivalogan satchithanandamoorthy
i don't know how to approach the problem

Connectez-vous pour commenter.

Réponses (1)

Moe_2015
Moe_2015 le 18 Fév 2016
Modifié(e) : Moe_2015 le 18 Fév 2016
This should be pretty straight forward. You can do this:
%Assuming a structure name of Structure
Time=Structure.time;
Signal=Structure.signal;
EDIT: I realized that this might be some data you're getting from simulink as a structure with time from the way you phrased it. So it would be something like this:
Time=simout.time;
Signal=simout.signals.values;
  3 commentaires
Moe_2015
Moe_2015 le 18 Fév 2016
Modifié(e) : Moe_2015 le 18 Fév 2016
You are welcome. If this helped you with your problem please accept the answer for the benefit of others.
Jonathan Duncan
Jonathan Duncan le 6 Oct 2017
if you wanted to extract more than 1 value how would you do that ?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by