How to create code for toeplitz matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Telema Harry
am 10 Mär. 2021
Kommentiert: Telema Harry
am 10 Mär. 2021
I have Y = [1,2,3,4] and I want to create
YY =
[1 2 3 4
2 1 2 3
3 2 1 2
4 3 2 1]
YY = toeplitz (Y(1,1:4)) can easily give me this result. However, I will like to create my own code.
I will appreciate any help.
0 Kommentare
Akzeptierte Antwort
Tesfaye Girma
am 10 Mär. 2021
fipref('NumericTypeDisplay','short');
format short g
a = fi([1 2 3],true,8,5)
b = fi([1 4 8],true,16,10)
toeplitz(a,b)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!