How to build a new matrix
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Moe
am 29 Okt. 2014
Kommentiert: Titus Edelhofer
am 29 Okt. 2014
I have a matrix
a = [4;6;8;2;8;2];
And I want it to be like:
b = [7;8;11;12;15;16;3;4;15;16;3;4];
Matrix b is calculated based on following formula:
7 = 4*2-1
8 = 4*2
11 = 6*2-1
12 = 6*2
15 = 8*2-1
16 = 8*2
3 = 2*2-1
4 = 2*2
15 = 8*2-1
16 = 8*2
3 = 2*2-1
4 = 2*2
1 Kommentar
Titus Edelhofer
am 29 Okt. 2014
Hi,
I would suggest to take a look at http://www.mathworks.com/matlabcentral/answers/8626-how-do-i-get-help-on-homework-questions-on-matlab-answers
Titus
Akzeptierte Antwort
Mischa Kim
am 29 Okt. 2014
Something like
b = reshape(bsxfun(@minus,2*repmat(a,1,2),[1 0])',1,[])
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!