I receive different output to like input

1 次查看(过去 30 天)
why is there diffrent in the outputs?
v=0:4;[0:4+5*(0:4)'];[v+5*v']
  1 个评论
Gautam Chettiar
Gautam Chettiar 2022-11-1
v' is the transpose, and when you are adding two 1-D arrays which have different dimensions, here of (1,5) and (5,1), MATLAB automatically casts a broadcasted matrix addition, hence both of matrices get converted to (5,5) dimension form with repeating columns and rows respectively. The output is exactly what it should be.

请先登录,再进行评论。

采纳的回答

Voss
Voss 2022-11-1
0:4+5*(0:4)' is the same as 0:(4+5*(0:4)')
0:(4+5*(0:4)')
ans = 1×5
0 1 2 3 4
v+5*v', where v is 0:4, is the same as (0:4)+5*(0:4)'
v = 0:4;
v+5*v'
ans = 5×5
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
(0:4)+5*(0:4)'
ans = 5×5
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

更多回答(0 个)

类别

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

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by