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
Beberapa hari ini tidak sempat mengisi website ini. Bukan karena malas atau tidak ada bahan tetapi karena sedang sakit. Sebenarnya lumayan banyak yang ingin ditulis, tetapi terhalang oleh penyakit. Sebenarnya sakitnya sakit yang tidak begitu parah. Hanya mual-mual, diare dan dilanjutkan oleh muntah-muntah. Tetapi menyebabkan badan terasa lemas dan tak berdaya. Setelah ke dokter, dianalisa
I Use Centos5 as my Linux system operation. Default mono-core installed in centos is mono-core-1.2.4-2.el5.centos. This version is to old and I want to install or upgrade mono. This is a method how to install or upgrade mono in Centos5. Create a new repo config file. vim /etc/yum.repos.d/mono.repo and add the following text : [Mono]
I have a module in fortran and I want to call that module from C. I use gfortran (as Fortran compiler) and gcc (as C compiler). I want to calling routines in fortran modules from C. We can solve this problem by compile our code to object file and use gcc to compile object as