Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1.2.2 #12

Merged
merged 13 commits into from
Apr 19, 2024
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.24)
project(
fstats
LANGUAGES Fortran
VERSION 1.2.1
VERSION 1.2.2
)

# Confgiure everything
Expand Down
6 changes: 3 additions & 3 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ <h3>Modules</h3>
<div class="col-xs-6 col-sm-3">
<div>
<h3>Procedures</h3>
<ul><li><a href='proc\adjusted_r_squared.html'>adjusted_r_squared</a></li><li><a href='proc\allan_variance.html'>allan_variance</a></li><li><a href='interface\anova.html'>anova</a></li><li><a href='proc\beta.html'>beta</a></li><li><a href='proc\bootstrap.html'>bootstrap</a></li><li><a href='proc\bootstrap_linear_least_squares.html'>bootstrap_linear_least_squares</a></li><li><a href='proc\bootstrap_nonlinear_least_squares.html'>bootstrap_nonlinear_least_squares</a></li><li><a href='interface\bootstrap_resampling_routine.html'>bootstrap_resampling_routine</a></li><li><a href='interface\bootstrap_statistic_routine.html'>bootstrap_statistic_routine</a></li><li><a href='interface\box_muller_sample.html'>box_muller_sample</a></li></ul>
<ul><li><a href='proc\adjusted_r_squared.html'>adjusted_r_squared</a></li><li><a href='proc\allan_variance.html'>allan_variance</a></li><li><a href='interface\anova.html'>anova</a></li><li><a href='proc\bartletts_test.html'>bartletts_test</a></li><li><a href='proc\beta.html'>beta</a></li><li><a href='proc\bootstrap.html'>bootstrap</a></li><li><a href='proc\bootstrap_linear_least_squares.html'>bootstrap_linear_least_squares</a></li><li><a href='proc\bootstrap_nonlinear_least_squares.html'>bootstrap_nonlinear_least_squares</a></li><li><a href='interface\bootstrap_resampling_routine.html'>bootstrap_resampling_routine</a></li><li><a href='interface\bootstrap_statistic_routine.html'>bootstrap_statistic_routine</a></li></ul>
</div>
<div>
<ul>
Expand All @@ -119,7 +119,7 @@ <h3>Procedures</h3>
<div class="col-xs-6 col-sm-3">
<div>
<h3>Derived Types</h3>
<ul><li><a href='type\anova_factor.html'>anova_factor</a></li><li><a href='type\binomial_distribution.html'>binomial_distribution</a></li><li><a href='type\bootstrap_regression_statistics.html'>bootstrap_regression_statistics</a></li><li><a href='type\bootstrap_statistics.html'>bootstrap_statistics</a></li><li><a href='type\chi_squared_distribution.html'>chi_squared_distribution</a></li><li><a href='type\convergence_info.html'>convergence_info</a></li><li><a href='type\distribution.html'>distribution</a></li><li><a href='type\f_distribution.html'>f_distribution</a></li><li><a href='type\iteration_controls.html'>iteration_controls</a></li><li><a href='type\lm_solver_options.html'>lm_solver_options</a></li></ul>
<ul><li><a href='type\anova_factor.html'>anova_factor</a></li><li><a href='type\array_container.html'>array_container</a></li><li><a href='type\binomial_distribution.html'>binomial_distribution</a></li><li><a href='type\bootstrap_regression_statistics.html'>bootstrap_regression_statistics</a></li><li><a href='type\bootstrap_statistics.html'>bootstrap_statistics</a></li><li><a href='type\chi_squared_distribution.html'>chi_squared_distribution</a></li><li><a href='type\convergence_info.html'>convergence_info</a></li><li><a href='type\distribution.html'>distribution</a></li><li><a href='type\f_distribution.html'>f_distribution</a></li><li><a href='type\iteration_controls.html'>iteration_controls</a></li></ul>
</div>
<div>
<ul>
Expand All @@ -140,7 +140,7 @@ <h3>Derived Types</h3>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
10 changes: 5 additions & 5 deletions doc/interface/anova.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1>anova
<li class="list-inline-item" id="statements"><i class="fa fa-list-ol"></i>
<a data-bs-toggle="tooltip"
data-bs-placement="bottom" data-html="true"
title="<p> 0.3% of total for procedures.</p>Including implementation: 146 statements, 9.3% of total for procedures.">5 statements</a>
title="<p> 0.3% of total for procedures.</p>Including implementation: 146 statements, 8.7% of total for procedures.">5 statements</a>
</li>

<li class="list-inline-item" id="source-file">
Expand Down Expand Up @@ -237,7 +237,7 @@ <h4>Arguments</h4>
<tbody>
<tr>
<td>
<span class="anchor" id="variable-x~51"></span>
<span class="anchor" id="variable-x~33"></span>
real(kind=real64),
</td>
<td>intent(in)</td>
Expand Down Expand Up @@ -282,7 +282,7 @@ <h4>Arguments</h4>
<tbody>
<tr>
<td>
<span class="anchor" id="variable-x~52"></span>
<span class="anchor" id="variable-x~34"></span>
real(kind=real64),
</td>
<td>intent(in)</td>
Expand Down Expand Up @@ -372,7 +372,7 @@ <h4>Arguments</h4>
</tr>
<tr>
<td>
<span class="anchor" id="variable-err~24"></span>
<span class="anchor" id="variable-err~16"></span>
class(errors),
</td>
<td>intent(inout),</td>
Expand Down Expand Up @@ -416,7 +416,7 @@ <h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
6 changes: 3 additions & 3 deletions doc/interface/bootstrap_resampling_routine.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1>bootstrap_resampling_routine
<li class="list-inline-item" id="statements"><i class="fa fa-list-ol"></i>
<a data-bs-toggle="tooltip"
data-bs-placement="bottom" data-html="true"
title=" 0.8% of total for procedures.">12 statements</a>
title=" 0.7% of total for procedures.">12 statements</a>
</li>

<li class="list-inline-item" id="source-file">
Expand Down Expand Up @@ -153,7 +153,7 @@ <h3>Arguments</h3>
<tbody>
<tr>
<td>
<span class="anchor" id="variable-x"></span>
<span class="anchor" id="variable-x~3"></span>
real(kind=real64),
</td>
<td>intent(in),</td>
Expand Down Expand Up @@ -205,7 +205,7 @@ <h3>Description</h3>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
8 changes: 4 additions & 4 deletions doc/interface/bootstrap_statistic_routine.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1>bootstrap_statistic_routine
<li class="list-inline-item" id="statements"><i class="fa fa-list-ol"></i>
<a data-bs-toggle="tooltip"
data-bs-placement="bottom" data-html="true"
title=" 0.8% of total for procedures.">12 statements</a>
title=" 0.7% of total for procedures.">12 statements</a>
</li>

<li class="list-inline-item" id="source-file">
Expand Down Expand Up @@ -153,7 +153,7 @@ <h3>Arguments</h3>
<tbody>
<tr>
<td>
<span class="anchor" id="variable-x~2"></span>
<span class="anchor" id="variable-x~4"></span>
real(kind=real64),
</td>
<td>intent(in),</td>
Expand All @@ -169,7 +169,7 @@ <h3>Arguments</h3>
</tbody>
</table>

<h3>Return Value <span class="anchor" id="variable-rst"></span><small>real(kind=real64)</small></h3>
<h3>Return Value <span class="anchor" id="variable-rst~3"></span><small>real(kind=real64)</small></h3>
<p>The resulting statistic.</p>
<h3>Description</h3>
<p>Defines the signature of a function for computing the desired
Expand All @@ -191,7 +191,7 @@ <h3>Description</h3>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
6 changes: 3 additions & 3 deletions doc/interface/box_muller_sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1>box_muller_sample
<li class="list-inline-item" id="statements"><i class="fa fa-list-ol"></i>
<a data-bs-toggle="tooltip"
data-bs-placement="bottom" data-html="true"
title="<p> 0.3% of total for procedures.</p>Including implementation: 31 statements, 2.0% of total for procedures.">4 statements</a>
title="<p> 0.2% of total for procedures.</p>Including implementation: 31 statements, 1.8% of total for procedures.">4 statements</a>
</li>

<li class="list-inline-item" id="source-file">
Expand Down Expand Up @@ -262,7 +262,7 @@ <h4>Arguments</h4>
</tr>
<tr>
<td>
<span class="anchor" id="variable-n~13"></span>
<span class="anchor" id="variable-n~34"></span>
integer(kind=int32),
</td>
<td>intent(in)</td>
Expand Down Expand Up @@ -301,7 +301,7 @@ <h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
16 changes: 8 additions & 8 deletions doc/interface/confidence_interval.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1>confidence_interval
<li class="list-inline-item" id="statements"><i class="fa fa-list-ol"></i>
<a data-bs-toggle="tooltip"
data-bs-placement="bottom" data-html="true"
title="<p> 0.3% of total for procedures.</p>Including implementation: 34 statements, 2.2% of total for procedures.">4 statements</a>
title="<p> 0.2% of total for procedures.</p>Including implementation: 22 statements, 1.3% of total for procedures.">4 statements</a>
</li>

<li class="list-inline-item" id="source-file">
Expand Down Expand Up @@ -174,7 +174,7 @@ <h4>Arguments</h4>
<tbody>
<tr>
<td>
<span class="anchor" id="variable-dist~4"></span>
<span class="anchor" id="variable-dist~5"></span>
class(<a href='..\type\distribution.html'>distribution</a>),
</td>
<td>intent(in)</td>
Expand All @@ -190,7 +190,7 @@ <h4>Arguments</h4>
</tr>
<tr>
<td>
<span class="anchor" id="variable-alpha~11"></span>
<span class="anchor" id="variable-alpha~12"></span>
real(kind=real64),
</td>
<td>intent(in)</td>
Expand Down Expand Up @@ -221,7 +221,7 @@ <h4>Arguments</h4>
</tr>
<tr>
<td>
<span class="anchor" id="variable-n~27"></span>
<span class="anchor" id="variable-n~36"></span>
integer(kind=int32),
</td>
<td>intent(in)</td>
Expand Down Expand Up @@ -265,7 +265,7 @@ <h4>Arguments</h4>
<tbody>
<tr>
<td>
<span class="anchor" id="variable-dist~5"></span>
<span class="anchor" id="variable-dist~6"></span>
class(<a href='..\type\distribution.html'>distribution</a>),
</td>
<td>intent(in)</td>
Expand All @@ -281,7 +281,7 @@ <h4>Arguments</h4>
</tr>
<tr>
<td>
<span class="anchor" id="variable-alpha~12"></span>
<span class="anchor" id="variable-alpha~13"></span>
real(kind=real64),
</td>
<td>intent(in)</td>
Expand All @@ -297,7 +297,7 @@ <h4>Arguments</h4>
</tr>
<tr>
<td>
<span class="anchor" id="variable-x~44"></span>
<span class="anchor" id="variable-x~51"></span>
real(kind=real64),
</td>
<td>intent(in)</td>
Expand Down Expand Up @@ -336,7 +336,7 @@ <h4>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
8 changes: 4 additions & 4 deletions doc/interface/distribution_function.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1>distribution_function
<li class="list-inline-item" id="statements"><i class="fa fa-list-ol"></i>
<a data-bs-toggle="tooltip"
data-bs-placement="bottom" data-html="true"
title=" 1.0% of total for procedures.">15 statements</a>
title=" 0.9% of total for procedures.">15 statements</a>
</li>

<li class="list-inline-item" id="source-file">
Expand Down Expand Up @@ -168,7 +168,7 @@ <h3>Arguments</h3>
</tr>
<tr>
<td>
<span class="anchor" id="variable-x~15"></span>
<span class="anchor" id="variable-x~11"></span>
real(kind=real64),
</td>
<td>intent(in)</td>
Expand All @@ -184,7 +184,7 @@ <h3>Arguments</h3>
</tbody>
</table>

<h3>Return Value <span class="anchor" id="variable-rst~10"></span><small>real(kind=real64)</small></h3>
<h3>Return Value <span class="anchor" id="variable-rst~6"></span><small>real(kind=real64)</small></h3>
<p>The value of the function.</p>
<h3>Description</h3>
<p>Defines the interface for a probability distribution function.</p>
Expand All @@ -205,7 +205,7 @@ <h3>Description</h3>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
6 changes: 3 additions & 3 deletions doc/interface/distribution_property.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1>distribution_property
<li class="list-inline-item" id="statements"><i class="fa fa-list-ol"></i>
<a data-bs-toggle="tooltip"
data-bs-placement="bottom" data-html="true"
title=" 1.0% of total for procedures.">15 statements</a>
title=" 0.9% of total for procedures.">15 statements</a>
</li>

<li class="list-inline-item" id="source-file">
Expand Down Expand Up @@ -169,7 +169,7 @@ <h3>Arguments</h3>
</tbody>
</table>

<h3>Return Value <span class="anchor" id="variable-rst~11"></span><small>real(kind=real64)</small></h3>
<h3>Return Value <span class="anchor" id="variable-rst~7"></span><small>real(kind=real64)</small></h3>
<p>The property value.</p>
<h3>Description</h3>
<p>Computes the value of a distribution property.</p>
Expand All @@ -190,7 +190,7 @@ <h3>Description</h3>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion doc/interface/iteration_update.html
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ <h3>Arguments</h3>
<p class="text-end">
Documentation generated by
<a href="https://github.com/Fortran-FOSS-Programmers/ford">FORD</a>
on 2024-03-26 07:52 </p>
on 2024-04-19 07:47 </p>
</div>
</div>
<br>
Expand Down
Loading
Loading