fscanf - In an assignment A(I) = B, the number of elements in B and I must be the same.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I cannot get fscanf to work with my Arduino when plotting a graph in real-time. I've read the docs and cannot see where I am going wrong.
I have 4 Arduino Serial.println statements. 3 of which are strings which I don't need. The 4th is an integer which is what I want to plot in real-time.
Here is my code:
ard = serial('/dev/tty.usbserial-A601EQJ5', 'BaudRate', 9600);
fopen(ard);
i = 1;
N = 50;
x = zeros(0, N);
while i <= N
x(i) = fscanf(ard, '%*s %d');
plot(x)
hold on
axis([1, N, 0, 150])
drawnow;
i = i + 1;
end
I keep getting the error that I have written in my title no matter what I change.
0 commentaires
Réponses (1)
dpb
le 23 Sep 2014
x(i) = fscanf(ard, '%*s %d');
x(i) is a single entry; apparently there are either no returned values or more than one reading is available from the fscanf call. Try
x(i) = fscanf(ard, '%*s %d',1);
to read just one return value at a time.
0 commentaires
Voir également
Catégories
En savoir plus sur MATLAB Support Package for Arduino Hardware dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!