0
How to automatically input excel sheet data in C programm to Find out maxium values or peak values ?
I have data sheet of acceleration by using a sensor, which has a particular maximum value among 150 values in one cycle. The graph is of damping motion.
2 Respuestas
+ 1
Hi, Pradyumn Chiwhane
Well, it can be either easy or challenging to automatically get values from a Excel datasheet.
The easy way is to have the datasheet in format CSV, i.e., comma-separated values. If you datasheet contains only data, ergo, no formulae and etc, you can save your datasheet as CSV.
Now, if you have a more intricate datasheet then you need a C library that allows you to read Excel datasheet formats (xls or xlsx). For this you can try libXL.
Good luck in your endeavor.