How to install Android x86 on Pc

Posted by Admin On Monday, February 18, 2013 0 comments
To install Android x86 on Pc:first download the iso file which is must be convenient with your pc. You can download it from here. After that you need to write it into a usb disk to form a livecd. Then reboot your computer. Go to boots by pressing F12 then select usb disk. You see...
READ MORE

How to add Categories to blogger blog?

Posted by Admin On Monday, February 18, 2013 0 comments
Guys, today I will tell about categories in blogger. Unfortunately there is no any category widget in blogger. So we have to create it by ourselves. To do this We have two solutions. First Solution: We can use labels with Links widget. Let me Explain with an example let’s say We want Matlab,Linux,Apple as our site’s categories. Then we need to add these names as labels to our posts. Then...
READ MORE

Apple iwatch

Posted by Admin On Sunday, February 17, 2013 0 comments
Designer of iwatch is Pavel Simeonov. The smart watch features a full multi-touch 2.5-inch 16:9 curved IPS display. Take a look below... ...
READ MORE

Random Walk using Matlab

Posted by Admin On Thursday, February 14, 2013 0 comments
x=0; y=0; xv=x; yv=y; while (abs(x)<10 && abs(y)<10)     d=randi(4);     switch d         case 1       %N=1             y=y+1;         case 2       %S=2             y=y-1;         case 3    ...
READ MORE

Slide Show using Matlab

Posted by Admin On Thursday, February 14, 2013 0 comments
figure n=1; while n<=12     membrane(n);     shading interp;     title(['Eigenfunction # ', num2str(n)]);     colormap(spring);     pause(1.0);     n=n+1; ...
READ MORE

Initial Arrangements in Matlab

Posted by Admin On Thursday, February 14, 2013 0 comments
str2=input('','s'); if strmatch('do the arrangements\n',str2)     disp('Yes Sir') end cd 'path' winopen('path'); fprintf('Welcome to Matlab, Mr. 'name'\nCurrent Directory is rearranged, and the mlbe file is opened.\n'); str1=input('','s'); if strmatch('thanks',str1)     disp('You are Welcome');     clear; e...
READ MORE

A Traveling Wave by Making an Animation in MATLAB

Posted by Admin On Monday, February 11, 2013 0 comments
clc %clears the command window clear %clears variables %Variables: %Eo wave amplitude (V/m) %f frequency (Hz) %omega angular frequency (rad/s) %t time snapshot %c speed of light %z position %E Electric Field Intensity %B phase constant (1/m) %phi phase...
READ MORE

Modelling a Digital Communication System using Matlab

Posted by Admin On Thursday, February 7, 2013 0 comments
A digital telephone converts an analog signal(our voice) to a digital signal before transmission. While the analog signal takes on real number values, the digital signal takes on only a finite set of integer values. We can model these implementation effects and save memory...
READ MORE