dono how to solve these error

hi i m preethi,
the error that i m getting is
sketch_nov23a.ino: In function 'void loop()':
sketch_nov23a:21: error: 'readvoltage' was not declared in this scope
sketch_nov23a:25: error: 'readDieTempC' was not declared in this scope

please help me out from this
here is my code:

#include <stdint.h>
#include <math.h>
#include <Wire.h>
#include <I2C_16.h>
#include <TMP006.h>

int TMP006_CFG_8SAMPLE= 8;
uint8_t sensor1 = 0x40; // I2C address of TMP006, can be 0x40-0x47
uint16_t samples = TMP006_CFG_8SAMPLE; // # of samples per reading, can be 1/2/4/8/16

void setup()
{
Serial.begin(9600);
Serial.println("TMP006 Example");

}

void loop()
{

float sensor_vtg = readvoltage(sensor1);
Serial.print("sensor voltage: ");
Serial.print(sensor_vtg); Serial.println("*C");

float sensor_temp = readDieTempC(sensor1);
Serial.print("Sensor Temperature: ");
Serial.print(sensor_temp); Serial.println("*C");

delay(2000); // delay 1 second for every 4 samples per reading
}

You are calling two functions of those names. They are not built-in functions yet nor did you define them in your sketch.

gpreethi:
sketch_nov23a.ino: In function 'void loop()':
sketch_nov23a:21: error: 'readvoltage' was not declared in this scope
sketch_nov23a:25: error: 'readDieTempC' was not declared in this scope

I don't know which version of TMP006 you are using, but in the few I have looked at, readvoltage() is not one of the available functions. However, readDieTempC() is defined in the Adafruit library, so that leads me to believe that you don't have the library properly installed.

The library needs to be in the Arduino\libraries folder, and it has to be in a subdirectory with the same name as the .h and .cpp files.

I have done an IR sensor sketch for a Melexis IR sensor, but didn't use a library for it.

how to find the version of tmp006 breakout board?
we cant calculate voltage of this sensor by that program ??
please help me out from these doubts