how to find values of y?

4 vues (au cours des 30 derniers jours)
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar le 22 Oct 2018
Rouvert : Walter Roberson le 22 Déc 2018
if true
% code
x=[0,1 1 20 30 430]
%corresponding values of y
y=[1510.75 a b c 10.9]
how to find a b c?

Réponses (1)

madhan ravi
madhan ravi le 22 Oct 2018
clear all
syms a b c
x=[0.1 1 20 30 430]
%corresponding values of y
y=[1510.75 a b c 10.9]
for i =1:numel(y)
if (isnumeric(y(i))==0)
idx(i)=i
else
continue
end
end
y(idx)=x(idx)
  4 commentaires
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar le 22 Oct 2018
i have a vector x of size 120000 in this vector x min is 0.1 and x max is 430
i know respective value of y
for xmin y is 1510
for x max y is 10.9
and i want to interpolate y within these values
madhan ravi
madhan ravi le 22 Oct 2018
maybe?
interp1(y,[10.9:1510])

Connectez-vous pour commenter.

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by