Borrar filtros
Borrar filtros

how to find values of y?

1 visualización (últimos 30 días)
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar el 22 de Oct. de 2018
Abierta de nuevo: Walter Roberson el 22 de Dic. de 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?

Respuestas (1)

madhan ravi
madhan ravi el 22 de Oct. de 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 comentarios
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar el 22 de Oct. de 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 el 22 de Oct. de 2018
maybe?
interp1(y,[10.9:1510])

Iniciar sesión para comentar.

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by