Year: 2011

Matlab : Create Progressbar

When we process a looping function in Matlab, we can create progressbar in this function. Matlab have waitbar function. We can use this function if we want to add progressbar in my function. This is sample of picture progressbar in Matlab with function waitbar: This is example how to create progressbar in Matlab. Copy this

C/C++ : Passing Argument

I want create program with C/C++ with passing argument feature. We can input string, integer or float from this argument input. Create a file with name main.c and paste this code : /* * main.c * * Created on: Mar 24, 2011 * Author: toto */ #include <stdlib.h> #include <stdio.h> int main(int argc, char **argv)

C/C++ : Ascii to EBCDIC Converter

Continue from my last post about Convert EBCDIC to Ascii Convert, now I try to create a program with C/C++ to convert Ascii to EBCDIC (ascii to ebcdic converter). Create a file main.c and copy this code : /* * main.c * * Created on: Mar 22, 2011 * Author: toto */ #include <stdlib.h> #include