Effacer les filtres
Effacer les filtres

Create different interpolation steps in a column

10 vues (au cours des 30 derniers jours)
Adi Purwandana
Adi Purwandana le 5 Juin 2024
Commenté : Adi Purwandana le 5 Juin 2024
Hello there,
I have a data consisted of two column, let's say the first column is depth and the next one is data_x (see excel file attached). The y (depth) has irregular spacing (see fig). My intention is how to make an interpolated profile with a regulation as follow (see fig):
  • the first upper 10 depth should be interpolated with 1-depth point resolution
  • the next one (12-30) depth should be interpolated with 2-depth points resolution
  • the next one (>30) depth should be interpolated with 50-depth points resolution
Anyone knows how to do that?

Réponse acceptée

Matt J
Matt J le 5 Juin 2024
newy=[1:10,12:2:30, 50:50:500];
newdata=interp1(y,data,newy);

Plus de réponses (0)

Catégories

En savoir plus sur Interpolation dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by