how can i get value of 'a' at b=0.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Jan
el 19 de En. de 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.
Respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!