Learn R Programming

marinepredator (version 0.0.1)

get_function_details: Get Function Details

Description

Retrieves the details (bounds, dimension, and function object) for a specific benchmark test function.

Usage

get_function_details(function_name)

Value

A list containing:

lb

Lower bounds for the function

ub

Upper bounds for the function

dim

Number of dimensions

fobj

The objective function

Arguments

function_name

Name of the test function (e.g., "F01", "F02", ..., "F23")

Examples

Run this code
# Get details for the Sphere function (F01)
details <- get_function_details("F01")
str(details)

Run the code above in your browser using DataLab