Store one vector range inside another
1 次查看(过去 30 天)
显示 更早的评论
How to store the values of vector x, say from x(50,1) to x(100,1)?
I tried in the following way, but it didn't work.
RES_BLOCK_C=X(385,1):X(1921.1)
Ans:
RES_BLOCK_C = 0 1
0 个评论
回答(2 个)
Jonas
2022-7-23
put the : range expression in the braces to select a range if a vector:
vec=1:10
part=vec(5:8)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!