Create subsets by a moving window.
Ältere Kommentare anzeigen
I have a 1087x12 seismic catalogue and I want to create multiple .txt subsets from it by a 50 events moving window. There will be 1038 .txt files in total.
2 Kommentare
Geoff Hayes
am 27 Feb. 2020
Anna - to be clear, if Data is your 1087x12 matrix, then are you interested in copying the following to file?
Data(1:50,:)
Data(2:51,:)
Data(3:52,:)
...
Data(k:k+50-1,:)
...
Data(1038:1087,:)
Geoff Hayes
am 27 Feb. 2020
Anna's answer moved here
Yes, I 'm interested.
Akzeptierte Antwort
Weitere Antworten (1)
Anna Sidiropoulou
am 27 Feb. 2020
0 Stimmen
Kategorien
Mehr zu Data Import and Analysis finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!