Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to interpolate this variable

1 vue (au cours des 30 derniers jours)
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar le 13 Mar 2019
Clôturé : MATLAB Answer Bot le 20 Août 2021
The calculation of my program gives out a variable 190*40
I want to interpolate it to 190*400
how can i do it?

Réponses (1)

KSSV
KSSV le 13 Mar 2019
Modifié(e) : KSSV le 13 Mar 2019
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 commentaires
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar le 13 Mar 2019
But the values i have seen do not match
KSSV
KSSV le 13 Mar 2019
try with interp2.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by