Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
Ian Ian is offline
external usenet poster
 
Posts: 109
Default Charts/XY(scatter)/Smooth lines option

I would appreciate your help in the following issue:

We like to know what function the Excel developpers have used in Excel for
Charts/XY(scatter)/smooth lines. It iseems to us that it is a B-spline but
there are many of those around. Could you please provide us with the exact
spline function used for interpolation in this Excel option and possibly the
code

Thanks a lot in advance
Ian
  #2   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Charts/XY(scatter)/Smooth lines option

Excel actually uses Bezier curves, though they can be approximated by
splines. Look for the Smooth_curve_bezier_example_file.xls download in the
bottom part of this page on Brian Murphy's web site:

http://www.xlrotor.com/resources/files.shtml

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
I would appreciate your help in the following issue:

We like to know what function the Excel developpers have used in Excel for
Charts/XY(scatter)/smooth lines. It iseems to us that it is a B-spline but
there are many of those around. Could you please provide us with the exact
spline function used for interpolation in this Excel option and possibly
the
code

Thanks a lot in advance
Ian



  #3   Report Post  
Posted to microsoft.public.excel.charting
Ian Ian is offline
external usenet poster
 
Posts: 109
Default Charts/XY(scatter)/Smooth lines option

Dear Jon,

Thanks for the message. I followed your advise but it seems that the code in
Brian's web site is only for 4 points. In Excel we can give any number of
points without restrictions and Excel gives us the smoth line.
I would appreciate your advise

Thanks in advance

Ian

"Jon Peltier" wrote:

Excel actually uses Bezier curves, though they can be approximated by
splines. Look for the Smooth_curve_bezier_example_file.xls download in the
bottom part of this page on Brian Murphy's web site:

http://www.xlrotor.com/resources/files.shtml

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
I would appreciate your help in the following issue:

We like to know what function the Excel developpers have used in Excel for
Charts/XY(scatter)/smooth lines. It iseems to us that it is a B-spline but
there are many of those around. Could you please provide us with the exact
spline function used for interpolation in this Excel option and possibly
the
code

Thanks a lot in advance
Ian




  #4   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Charts/XY(scatter)/Smooth lines option

What are you using the smoothed lines for? Not to interpolate values between
plotted points, I hope, because the curves hold no information about the
values between the points.

I haven't looked at Brian's workbook in a couple of years, so I forget how
he did it. Couldn't you extend the formulas, or loop more in the code, or
extend whatever technique he uses?

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
Dear Jon,

Thanks for the message. I followed your advise but it seems that the code
in
Brian's web site is only for 4 points. In Excel we can give any number of
points without restrictions and Excel gives us the smoth line.
I would appreciate your advise

Thanks in advance

Ian

"Jon Peltier" wrote:

Excel actually uses Bezier curves, though they can be approximated by
splines. Look for the Smooth_curve_bezier_example_file.xls download in
the
bottom part of this page on Brian Murphy's web site:

http://www.xlrotor.com/resources/files.shtml

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
I would appreciate your help in the following issue:

We like to know what function the Excel developpers have used in Excel
for
Charts/XY(scatter)/smooth lines. It iseems to us that it is a B-spline
but
there are many of those around. Could you please provide us with the
exact
spline function used for interpolation in this Excel option and
possibly
the
code

Thanks a lot in advance
Ian






  #5   Report Post  
Posted to microsoft.public.excel.charting
Ian Ian is offline
external usenet poster
 
Posts: 109
Default Charts/XY(scatter)/Smooth lines option

Dear Jon,

I have a table of X and Y which are more than 4. Normally Bezier is for 4
points. By interpolating with Excel I can get a smooth line from several
input points but not the values in between. In Brians code you can in fact
take the interpolated values between the original interpolated points
according to a step. However it has as an input only 4 points. It seems
difficult to me how to extend it since it is not straight forward. I think
Brian should have done it and if he can help I would very much appreciate

Thanks again

ian



"Jon Peltier" wrote:

What are you using the smoothed lines for? Not to interpolate values between
plotted points, I hope, because the curves hold no information about the
values between the points.

I haven't looked at Brian's workbook in a couple of years, so I forget how
he did it. Couldn't you extend the formulas, or loop more in the code, or
extend whatever technique he uses?

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
Dear Jon,

Thanks for the message. I followed your advise but it seems that the code
in
Brian's web site is only for 4 points. In Excel we can give any number of
points without restrictions and Excel gives us the smoth line.
I would appreciate your advise

Thanks in advance

Ian

"Jon Peltier" wrote:

Excel actually uses Bezier curves, though they can be approximated by
splines. Look for the Smooth_curve_bezier_example_file.xls download in
the
bottom part of this page on Brian Murphy's web site:

http://www.xlrotor.com/resources/files.shtml

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
I would appreciate your help in the following issue:

We like to know what function the Excel developpers have used in Excel
for
Charts/XY(scatter)/smooth lines. It iseems to us that it is a B-spline
but
there are many of those around. Could you please provide us with the
exact
spline function used for interpolation in this Excel option and
possibly
the
code

Thanks a lot in advance
Ian








  #6   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Charts/XY(scatter)/Smooth lines option

As I recall, two adjacent points in the chart form the outer pair of points
in the Bezier curve, and Brian includes algorithms for determining the inner
two. You need to do the analysis between every adjacent pair of points in
the series.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
Dear Jon,

I have a table of X and Y which are more than 4. Normally Bezier is for 4
points. By interpolating with Excel I can get a smooth line from several
input points but not the values in between. In Brians code you can in fact
take the interpolated values between the original interpolated points
according to a step. However it has as an input only 4 points. It seems
difficult to me how to extend it since it is not straight forward. I think
Brian should have done it and if he can help I would very much appreciate

Thanks again

ian



"Jon Peltier" wrote:

What are you using the smoothed lines for? Not to interpolate values
between
plotted points, I hope, because the curves hold no information about the
values between the points.

I haven't looked at Brian's workbook in a couple of years, so I forget
how
he did it. Couldn't you extend the formulas, or loop more in the code, or
extend whatever technique he uses?

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
Dear Jon,

Thanks for the message. I followed your advise but it seems that the
code
in
Brian's web site is only for 4 points. In Excel we can give any number
of
points without restrictions and Excel gives us the smoth line.
I would appreciate your advise

Thanks in advance

Ian

"Jon Peltier" wrote:

Excel actually uses Bezier curves, though they can be approximated by
splines. Look for the Smooth_curve_bezier_example_file.xls download in
the
bottom part of this page on Brian Murphy's web site:

http://www.xlrotor.com/resources/files.shtml

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"IAN" wrote in message
...
I would appreciate your help in the following issue:

We like to know what function the Excel developpers have used in
Excel
for
Charts/XY(scatter)/smooth lines. It iseems to us that it is a
B-spline
but
there are many of those around. Could you please provide us with the
exact
spline function used for interpolation in this Excel option and
possibly
the
code

Thanks a lot in advance
Ian








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How does Excel smooth chart data when smooth option is selected? Larry Charts and Charting in Excel 1 April 19th 07 06:40 AM
How do I smooth the lines around a pie chart? Mary Beth Charts and Charting in Excel 0 October 9th 06 04:39 PM
Smooth lines for 3-D pie charts? RussG Charts and Charting in Excel 0 February 8th 06 03:48 PM
smooth graph lines Patience Excel Discussion (Misc queries) 4 July 22nd 05 12:36 AM
Excel Scatter Plot with connected by smooth lines Rosa Campos Charts and Charting in Excel 1 February 9th 05 03:55 PM


All times are GMT +1. The time now is 04:42 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"