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

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

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

Asked:

on 16 Jan 2013

Community Treasure Hunt

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

Start Hunting!