R Under development (unstable) (2025-10-01 r88895 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(MixStable) Attaching package: 'MixStable' The following object is masked from 'package:graphics': clip > x <- seq(0.1, 2, length.out = 5) > alpha <- 1.5; beta <- 0.5; delta <- 1.0; omega <- 1.0 > > res_g <- integrate_sine_weighted(x, alpha, beta, delta, omega) > res_h_tld <- integrate_sine_log_weighted(x, alpha, beta, delta, omega) > res_h <- integrate_cosine_log_weighted(x, alpha, beta, delta, omega) > > cat("Result sine_weighted_exp_ralpha:\n") Result sine_weighted_exp_ralpha: > print(res_g) [1] -0.2076936 0.1442835 0.3620487 0.3845182 0.2919641 > cat("Result sine_log_weighted_exp_ralpha:\n") Result sine_log_weighted_exp_ralpha: > print(res_h_tld) [1] 2.9562532 1.1872129 -0.5935153 -2.3794886 -4.1574107 > cat("Result cosine_log_weighted_exp_ralpha:\n") Result cosine_log_weighted_exp_ralpha: > print(res_h) [1] -13.09641 -13.15738 -13.16115 -13.09562 -12.95238 > > > > > proc.time() user system elapsed 3.29 0.59 3.87