Borrar filtros
Borrar filtros

Storing data from a function into and array to be recalled?

3 visualizaciones (últimos 30 días)
I am trying to record the following function and then be able to recall it.
clear all
clear
clc
a = arduino('com3', 'uno');
s = servo(a, 'D10','MaxPulseDuration', .0025, 'MinPulseDuration', .0005);
n = 60;
for k = 1:n;
z = readVoltage(a,'A5');
p = ((1023 / 5) * z);
x(n) = (p / 1023)
writePosition(s,x(n));
end
n = 60
for k = 1:n
writePosition(s,x(n))
end

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 20 de Nov. de 2019
Editada: KALYAN ACHARJYA el 20 de Nov. de 2019
a = arduino('com3', 'uno');
s = servo(a, 'D10','MaxPulseDuration', .0025, 'MinPulseDuration', .0005);
n = 60;
x=zeros(1,n);
for k = 1:n
z=readVoltage(a,'A5');
p=((1023 / 5) * z);
x(k)=p/1023;
writePosition(s,x(n));
end
# Now you can recall the array x, when in required (same workspace)
for k=1:n
writePosition(s,x(k))
end

Más respuestas (0)

Categorías

Más información sobre MATLAB Support Package for Arduino Hardware en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by