Creating vectors from columns of a matrix

5 次查看(过去 30 天)
I have a matrix containing indices of elements for example:
A = [55 59; 242 270]
How can I create a matrix that has rows starting at the first element and ending at the second element of each row of A, i.e. :
B = [55 56 57 58 59; 242 243 ... 269 270]

采纳的回答

Dyuman Joshi
Dyuman Joshi 2023-5-13
You can not obtain the output you want in terms of numeric data type due to size mismatch for vertical concatenation. You can obtain the output in terms of cell arrays -
A = [55 59; 242 270]
A = 2×2
55 59 242 270
out = arrayfun(@(x) A(x,1):A(x,2), 1:size(A,1), 'UniformOutput', false)'
out = 2×1 cell array
{[ 55 56 57 58 59]} {[242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270]}

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by