2d extrapolation to replace NaN in corners
50 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi !
I'm trying to do 2d extrapolation for my table in matlab.
I have a matrix with 101x101 values and corresponding axes with 1x101 and 101x1 values.
Now my problem is the following:
The corners of the matrix are containing NaN values which I want to replace with extrapolated values of the given data.
0 Commenti
Risposta accettata
Più risposte (1)
Star Strider
il 26 Ago 2022
Try something like this —
M = NaN(5);
M([3 (7:9) 11:15 (7:9)+10 23]) = randi(9, 1, 13)
Mfm = fillmissing(M, 'nearest')
.
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!