Qt: QTableView Tutorial I

I am interesting with QTableView. I try to search QTableView tutorial, but difficult to get this tutorial. So, I try to create basic QTableView Tutorial. This is output from my first QTableView Tutorial: First, copy this text and save as main.cpp. #include <QApplication> #include "tableview.h" int main( int argc, char **argv ) { QApplication app(

Centos Install Seismic Unix

Seismic Unix is an open source seismic utilities package supported by the Center for Wave Phenomena (CWP) at the Colorado School of Mines (CSM). I use Centos 5.5 as my system operation. This is steps to install Seismic Unix in my computer : I want to install Seismic Unix at /opt/seisun. Copy Seismic Unix source

Convert RSF Madagascar to SEG-Y/SU File

Madagascar is an open-source software package for multidimensional data analysis and reproducible computational experiments. I get many of new program in Madagascar source code. Madagascar is free open source seismic software like Seismic Unix or Seplib. You can get tutorial about how to use command in Madagascar at here. In my opinion, command in Madagascar

Matlab fix Function to C

I get function fix in Matlab. fix(X) rounds the elements of X to the nearest integers towards zero. For example if we have data with value : X = [-1.9, -0.2, 3.4, 5.6, 7.0] When we use fix function with this data, so we get output : Y = [1.0000        0             3.0000        5.0000 7.0000] I