/*
* sbasis-math.cpp - some std functions to work with (pw)s-basis
*
* Authors:
* Jean-Francois Barraud
*
* Copyright (C) 2006-2007 authors
*
* modify it either under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation
* (the "LGPL") or, at your option, under the terms of the Mozilla
* Public License Version 1.1 (the "MPL"). If you do not alter this
* notice, a recipient may use your version of this file under either
* the MPL or the LGPL.
*
* You should have received a copy of the LGPL along with this library
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* You should have received a copy of the MPL along with this library
* in the file COPYING-MPL-1.1
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
* OF ANY KIND, either express or implied. See the LGPL or the MPL for
* the specific language governing rights and limitations.
*/
//this a first try to define sqrt, cos, sin, etc...
//TODO: define a truncated compose(sb,sb, order) and extend it to pw<sb>.
//TODO: in all these functions, compute 'order' according to 'tol'.
#include <stdio.h>
#include <math.h>
//#define ZERO 1e-3
namespace Geom {
//-|x|-----------------------------------------------------------------------
/** Return the absolute value of a function pointwise.
\param f function
*/
}
/** Return the absolute value of a function pointwise.
\param f function
*/
}
return absf;
}
//-max(x,y), min(x,y)--------------------------------------------------------
/** Return the greater of the two functions pointwise.
\param f, g two functions
*/
}
/** Return the greater of the two functions pointwise.
\param f, g two functions
*/
}
/** Return the greater of the two functions pointwise.
\param f, g two functions
*/
}
/** Return the greater of the two functions pointwise.
\param f, g two functions
*/
}
return max;
}
/** Return the more negative of the two functions pointwise.
\param f, g two functions
*/
/** Return the more negative of the two functions pointwise.
\param f, g two functions
*/
/** Return the more negative of the two functions pointwise.
\param f, g two functions
*/
/** Return the more negative of the two functions pointwise.
\param f, g two functions
*/
//-sign(x)---------------------------------------------------------------
/** Return the sign of the two functions pointwise.
\param f function
*/
}
/** Return the sign of the two functions pointwise.
\param f function
*/
}
return sign;
}
//-Sqrt----------------------------------------------------------
double tol,
int order){
}
if(r.tailError(i) == 0) // if exact
break;
}
}else{
}
}
return sqrtf0;
}
/** Compute the sqrt of a function.
\param f function
*/
}
/** Compute the sqrt of a function.
\param f function
*/
}
return result;
}
/** Compute the sine of a function.
\param f function
\param tol maximum error
\param order maximum degree polynomial to use
*/
/** Compute the sine of a function.
\param f function
\param tol maximum error
\param order maximum degree polynomial to use
*/
Piecewise<SBasis> sin(Piecewise<SBasis> const &f, double tol, int order){return(cos(-f+M_PI/2,tol,order));}
/** Compute the cosine of a function.
\param f function
\param tol maximum error
\param order maximum degree polynomial to use
*/
for (unsigned i=0; i<f.size(); i++){
}
return result;
}
/** Compute the cosine of a function.
\param f function
\param tol maximum error
\param order maximum degree polynomial to use
*/
//estimate cos(x)-sum_0^order (-1)^k x^2k/2k! by the first neglicted term
xk*=x/k;
//take also truncature errors into account...
s+=xk;
xk*=-x/(k+1);
//take also truncature errors into account...
c+=xk;
}
}
}
return c0;
}
//--1/x------------------------------------------------------------
//TODO: this implementation is just wrong. Remove or redo!
if (order>=0){
}
}
}
//TODO: deduce R from tol...
double R=2.;
if (a*b<0){
a=0;
}else if (b<0){
}
if (a<=tol){
}else{
}
while (a<b){
a*=R;
}
//TODO: define reverse(pw<sb>);
for (unsigned i=0; i<reciprocal_fn.size(); i++){
}
}
}
return(reciprocal_fn);
}
return(result);
}
return(result);
}
/**
* \brief Retruns a Piecewise SBasis with prescribed values at prescribed times.
*
* \param times: vector of times at which the values are given. Should be sorted in increasing order.
* \param values: vector of prescribed values. Should have the same size as times and be sorted accordingly.
* \param smoothness: (defaults to 1) regularity class of the result: 0=piecewise linear, 1=continuous derivative, etc...
*/
Piecewise<SBasis> interpolate(std::vector<double> times, std::vector<double> values, unsigned smoothness){
}
return result;
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :