Wow i'm rusty... I'd like to interpolate for Wn over the range of Ln in the code below. Which it does but the plot 'X' axis is numbered from 1 to 25. Why doesn't it scale from 500 to 2500?
L = 500:500:2500;
W = [13 11 10 15 22];
Ln = 500:100:2500;
Wn = interp1(L, W, Ln);

 Accepted Answer

Plot using
plot(Ln, Wn)

2 Comments

that was easy...thank you.
You are welcome.

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!