put a matrix as a variable in another matrix so i can access different matrixes
Show older comments
I want to acces 4 differenet matrixes 1 at the time, this is probably not at all how it works but I tried this.
tn = [th ho tm mi] %time now
for n = 1:4;
c = tn(n)
% here comes to code to change the clock
end
this with th, ho, tm and mi being tens hours, hours, tens minutes and minutes (I'm programming a robot arm that puts pins in certain holes which creates teh immage of a digital clock). example:
ho=[ 1 1 1;
1 0 0;
1 1 1;
0 0 1;
1 1 1];
the hour now is 5.
but to get to the point. I first want to let the robot run a script for the minutes, then the same script for the ten minutes, then for the hours and then for the ten hours.
Accepted Answer
More Answers (0)
Categories
Find more on Robotics in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!