Changeset 929 for trunk


Ignore:
Timestamp:
09/02/10 04:26:09 (3 years ago)
Author:
reyalp
Message:

locarithmic -> logarithmic from DavidB

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/histogram.c

    r740 r929  
    1414 
    1515static float identity(float x); 
    16 static float locarithmic(float x); 
     16static float logarithmic(float x); 
    1717 
    1818 
     
    3636} 
    3737 
    38 float locarithmic(float x) { 
     38float logarithmic(float x) { 
    3939    return log(x); 
    4040} 
     
    4343    switch (mode) { 
    4444        case HISTO_MODE_LOG:  
    45             histogram_transform = locarithmic;  
     45            histogram_transform = logarithmic;  
    4646            break; 
    4747        case HISTO_MODE_LINEAR:  
Note: See TracChangeset for help on using the changeset viewer.