Very tricky:Manipulation with complex array
3 views (last 30 days)
Show older comments
Jovan Jovovic
on 19 Sep 2022
Edited: Jovan Jovovic
on 19 Sep 2022
I need to write a m.file function for this.
For example
array X = [4, 1, 1, 3, 8, 12], I need to make the array which will contain bold ones as well Y = [4, 1, 5, 1, 3, 4, 8, 12, 20].
3 Comments
Accepted Answer
Fabio Freschi
on 19 Sep 2022
Edited: Fabio Freschi
on 19 Sep 2022
% original vector
X = [4, 1, 1, 3, 8, 12];
% reshape to have 2xN vector
W = reshape(X,2,[]);
% calculate the sum
S = sum(W,1);
% concat the vector and reshape
Y = reshape([W; S],1,[])
3 Comments
More Answers (0)
See Also
Categories
Find more on Matrices and Arrays 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!