So you have to "rip" a number apart into individual digits... The end output is a cell.
That is if:
x = 12345678 out = {[1 2 3 4 5 6 7 8]}
x = [1 23 53 1 88] out = {[1 2 3 5 3 1 8 8]}
x = [213 102 9 12; 11 323 34 22]; out = {[2 1 3 1 0 2 9 1 2]; [1 1 3 2 3 3 4 2 2]};
x = [120395; 2] out = {[1 2 0 3 9 5]; [2]}
Nice 'for'! Sometimes I simply forget to use that!
Find the numeric mean of the prime numbers in a matrix.
5906 Solvers
How to find the position of an element in a vector without using the find function
2320 Solvers
138 Solvers
Create a vector whose elements depend on the previous element
290 Solvers
474 Solvers