How to interpolate this variable
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
The calculation of my program gives out a variable 190*40
I want to interpolate it to 190*400
how can i do it?
Risposte (1)
Read about interp2., imresize.
Le A be your 190*40 variable.
B = imresize(A,[190 400]) ;
B(B==0) = NaN ;
pcolor(B')
shading interp
caxis([1 5])
4 Commenti
Shubham Mohan Tatpalliwar
il 13 Mar 2019
KSSV
il 13 Mar 2019
What I have given does the same. It is interpolation.
Shubham Mohan Tatpalliwar
il 13 Mar 2019
KSSV
il 13 Mar 2019
try with interp2.
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!