Using a variable value as linear array index

8 次查看(过去 30 天)
Can you use a variable as an array index? for example: C = 200 - 30
then use C as the linear index for the array.
B(C)
This just multiplies B by C. Can you tell the program to just use the value of C?

采纳的回答

Adam
Adam 2017-2-7
编辑:Adam 2017-2-7
Yes
B(C)
will use C to index into B, it doesn't multiply at all.
Surely you could just try this out on the command line, it is how I learned a lot of what I know!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by