Clear Filters
Clear Filters

plot scale is messed up

4 views (last 30 days)
flemingtb
flemingtb on 7 May 2018
Commented: Ameer Hamza on 7 May 2018
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

Ameer Hamza
Ameer Hamza on 7 May 2018
Plot using
plot(Ln, Wn)
  2 Comments
flemingtb
flemingtb on 7 May 2018
that was easy...thank you.
Ameer Hamza
Ameer Hamza on 7 May 2018
You are welcome.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!