15 real(r8),
dimension(mfm),
intent(in) :: fm
16 integer(itm_i4),
intent(in) :: mfm
18 real(r8),
dimension(mfm) :: fr, theta
19 integer(itm_i4) :: i, m
22 theta(i) = 2._r8 * pi * (i - 1) / dble(mfm - 1)
25 fr(i) = fr(i) + fm(2 * m - 1) * cos((m - 1) * theta(i)) &
26 + fm(2 * m) * sin((m - 1) * theta(i))
30 if (xmgrace_output)
then
31 call
plot_data_1d(
'line', theta, fr, mfm,
'xmgr_boundary_back')
subroutine plot_data_1d(type_plot, x, y, np, printname, z)