put a matrix as a variable in another matrix so i can access different matrixes

1 view (last 30 days)
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

Cam Salzberger
Cam Salzberger on 13 May 2019
Hello Joris,
As a quick-fix, you could make tn a cell array, containing the other matrices?
tn = {th ho tm mi};
for n = 1:4;
c = tn{n};
end
-Cam

More Answers (0)

Community Treasure Hunt

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

Start Hunting!