.claude/skills/chebfun-statistical-analysis/SKILL.md
Compute statistical measures including 2-norm, mean, standard deviation, and variance for chebfun objects. Use when you need to analyze the statistical properties of functions defined over intervals, compute function norms, or perform quantitative analysis of continuous data.
npx skillsauth add ShaneLogic/SolarLab chebfun-statistical-analysisInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
f_norm = norm(f)
The 2-norm is computed as:
||f|| = sqrt(∫ |f(x)|² dx)
% Smooth function
f = chebfun('sin(pi*theta)')
norm_f = norm(f) % Returns 1
% Non-smooth function with splitting
g = chebfun('sign(sin(pi*theta))', 'splitting', 'on')
norm_g = norm(g) % Returns sqrt(2)
f_mean = mean(f)
The mean is computed based on the integral of the function over its domain.
f_std = std(f)
f_var = var(f)
All statistical commands (mean, std, var) are based on integrals of the function over its region of definition.
development
Understand and comply with Driftfusion software licensing terms, including the open-source AGPL v3.0 frontend and proprietary MATLAB pdepe solver backend. Use when using, modifying, or distributing Driftfusion code.
development
Initialize the Driftfusion simulation environment and create parameter objects. Use this skill when starting a new MATLAB session or setting up device properties for simulation.
development
Define device layer structure, configure spatial and time meshes, and build device structures with interface grading. Use this skill when setting up the physical geometry and discretization of a simulation device.
research
Analyze simulation solutions, calculate physical quantities, and generate plots. Use this skill when processing completed simulations, extracting currents/densities, or visualizing results.