Displaying 9 results from an estimated 9 matches for "ilogb".
Did you mean:
  ilog2
  
2009 Feb 27
0
help with correct use of function lsfit
...pervision and suggestion.
I guess the returned coefficients of the oolynomial are: 
a = -1.3191398 
b = 0.1233055 
c = 0.9297401 
Thank you very much in advance,
Maura
######################################################
## Main
tms <- t(read.table("signal877cycle1.txt"))
J <- ilogb(length(tms), base=2) + 1
y <- c(tms,rep(0,2^J - length(tms)))
y.win <- tms.ext[1:17]
ls.mat <- matrix(nrow=length(y.win),ncol=3,byrow=TRUE)
dt <- 0.033
ls.mat[,1] <- 1
ls.mat[,2] <- seq(0,dt*(length(y.win)-1),dt)
ls.mat[,3] <- ls.mat[,2]^2
######################################...
2009 May 04
1
wrong if-else syntax
...et does not like the above syntax. In fact in my script I have the following instructions:
  if (DonohoAplhaON){                                
      tms <<- xx[,"sampamp"]                               #EXTRACT SIGNAL AMPLITUDE
      tmsLen <<- length(tms)
      J <<- ilogb(tmsLen, base=2)
      if (logb(tmsLen, base=2)%%2 > 0) {
         J <<- J + 1
      }
      rm(xx)
      rawtms <- tms 
      X <- PreProcessor(tms,tmsLen,J)
      BestWavList <- FindBestWavelet (X,tmsLen,J,Step1NumHighScalesOFF)
      if (!is.null(BestWavList)) {...
2019 May 15
0
Wine release 4.0.1
...46465  Visual Studio 2015 crashes on unimplemented function msvcp140.dll._Equivalent
  46481  strftime has a buffer overflow
  46482  Gas Guzzlers Combat Carnage crashes when changing screen resolution
  46485  PBM_STEPIT crashes with division by zero when MinVal == MaxVal == 0
  46493  Functions ilogb* are not implemented
  46494  64bit WinMerge crash after clicking "About WinMerge"
  46499  Multiple games crash in GetRawInputData when exiting(House Party, Murderous Pursuits, ICEY)
  46520  Kindred Spirits on the Roof crashes
  46536  Empire Earth (GOG version) main menu rendering is b...
2018 Feb 06
2
libc++ cross-compile linux-armv7 and math function problems
...'::hypotl' has not been
declared
 inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double __lcpp_x,
long double __lcpp_y) _NOEXCEPT {return ::hypotl(__lcpp_x, __lcpp_y);}
                                                      ^~
../projects/libcxx/include/math.h: In function 'int ilogb(long double)':
../projects/libcxx/include/math.h:1254:84: error: '::ilogbl' has not been
declared
 inline _LIBCPP_INLINE_VISIBILITY int ilogb(long double __lcpp_x) _NOEXCEPT
{return ::ilogbl(__lcpp_x);}
^~
../projects/libcxx/include/math.h: In function 'long double lgamma(long
doub...
2018 Feb 06
0
libc++ cross-compile linux-armv7 and math function problems
...ILITY long double hypot(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::hypotl(__lcpp_x, __lcpp_y);}
>                                                                                                                   ^~
> ../projects/libcxx/include/math.h: In function 'int ilogb(long double)':
> ../projects/libcxx/include/math.h:1254:84: error: '::ilogbl' has not been declared
>  inline _LIBCPP_INLINE_VISIBILITY int ilogb(long double __lcpp_x) _NOEXCEPT {return ::ilogbl(__lcpp_x);}
>...
2018 Feb 06
1
libc++ cross-compile linux-armv7 and math function problems
...declared
> >  inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double
> __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::hypotl(__lcpp_x,
> __lcpp_y);}
> >
>                                          ^~
> > ../projects/libcxx/include/math.h: In function 'int ilogb(long double)':
> > ../projects/libcxx/include/math.h:1254:84: error: '::ilogbl' has not
> been declared
> >  inline _LIBCPP_INLINE_VISIBILITY int ilogb(long double __lcpp_x)
> _NOEXCEPT {return ::ilogbl(__lcpp_x);}
> >
>            ^~
> > ../projects/lib...
2019 Mar 01
0
Wine release 4.3
...12)
  46318  vbscript doesn't parse if identifier is also keyword token
  46319  32-bit IL-only executable launched as 32-bit subprocess on Wine and 64-bit subprocess on Windows
  46442  FormatCurrency(9) returns .9.00 (period in front)
  46481  strftime has a buffer overflow
  46493  Functions ilogb* are not implemented
  46583  LINE latest version doesn't work
  46623  Game controller behaves incorrectly
  46638  dotnet40 no longer installs using winetricks
  46639  LoadLibraryShim fails in wow64
  46654  dotnet35sp1 fails to install with winetricks
  46678  Width of latin characters is w...
2018 Feb 05
0
Cross-compiling libc++ to linux-armv7hf gives undefined symbols in cmath / math.h
...;:
../projects/libcxx/include/math.h:1233:114: error: '::hypotl' has not been
declared
 inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double __lcpp_x,
long double __lcpp_y) _NOEXCEPT {return ::hypotl(__lcpp_x, __lcpp_y);}
^~
../projects/libcxx/include/math.h: In function 'int ilogb(long double)':
../projects/libcxx/include/math.h:1254:84: error: '::ilogbl' has not been
declared
 inline _LIBCPP_INLINE_VISIBILITY int ilogb(long double __lcpp_x) _NOEXCEPT
{return ::ilogbl(__lcpp_x);}
^~
../projects/libcxx/include/math.h: In function 'long double lgamma(long
doub...
2009 May 05
1
self organizing map advice for categorical data
...e syntax. In fact in my script I have the following instructions:
> 
>   if (DonohoAplhaON){                                
>       tms <<- xx[,"sampamp"]                               #EXTRACT SIGNAL AMPLITUDE
>       tmsLen <<- length(tms)
>       J <<- ilogb(tmsLen, base=2)
>       if (logb(tmsLen, base=2)%%2 > 0) {
>          J <<- J + 1
>       }
>       rm(xx)
>       rawtms <- tms 
>       X <- PreProcessor(tms,tmsLen,J)
>       BestWavList <- FindBestWavelet (X,tmsLen,J,Step1NumHighScalesOFF)
>       if (!...