how to find values of y?

5 views (last 30 days)
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar on 22 Oct 2018
Reopened: Walter Roberson on 22 Dec 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?

Answers (1)

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

Sign in to comment.

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!