How to write a variable in a Vector with a loop
Afficher commentaires plus anciens
Hi MATLAB community
Im sitting here on a problem maybe i can get here some help. I have the feeling im close but i cant get it. I searched for countless websites....
I have a Instrument that writes its Reading in a Value rv1. rv1 is is from type num. I have a vector RVM=zeros (1,3). My Goal is to write a loop which writes the curent value of rv1 in every place of the vector
this is my code...
RVM=zeros(1,3)
for i2=1:length(RVM)
fprintf(DMM_Current2,read_current);
rv1=fscanf(DMM_Current2)
rv1= str2num(rv1);
i want RVM so show this [value rv1 first loop value, rv1 second loop, rv1 third loop .......]
sry if im asking a trivial question... im new to MATLAB and i couldnt find something usefull in the MATLAB handbook
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!