I created an array of size 255 of pseudo-random integers . I want to access the value at a particular index of the array how can I do it ?
1 view (last 30 days)
Show older comments
Vaibav Reddy
on 27 Jul 2022
Edited: John D'Errico
on 27 Jul 2022
r0 = uint8(randi(255,255,1));
I now want to access the value at the index 158. How do I do it ?
0 Comments
Accepted Answer
John D'Errico
on 27 Jul 2022
Edited: John D'Errico
on 27 Jul 2022
Basically, you need to look at the getting started tutorials. Try the MATLAB Onramp.
r0 = uint8(randi(255,255,1));
r0(158)
0 Comments
More Answers (0)
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!