how can i get value of 'a' at b=0.

1 view (last 30 days)
vipul utsav
vipul utsav on 16 Jan 2013
clc;
close all;
clear all;
a=[5,11,15,18,22,30];
b=[2,3,4,5,6,7];
plot(b,a);
if i want value of 'a' at b=5.5 then i use 'interp1' function and i got correct value of 'a',
but how can i get value of 'a' at b=0.
  1 Comment
Jan
Jan on 19 Jan 2013
The half of your code consists of unmotivated brute clearing. I recommend to avoid this in your real programs, at least the useless "clear all" when actually a "clear variables" is meant. But for posting in the forum, such general purpose overhead code is noise only.

Sign in to comment.

Answers (0)

Categories

Find more on Descriptive Statistics 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!