Saturday, 1 December 2012

How to install and configure SQL Server 2008 R2

Watch this video to configure SQL Server 2008 R2 :


Tuesday, 27 November 2012

Saturday, 24 November 2012

standard cell design with solution of common errors in Tanner EDA

Watch this video and you will be able to create basic standard cell designing in Tanner EDA with solvation of possible errors.


Friday, 2 November 2012

Thursday, 25 October 2012

Wednesday, 24 October 2012

New features added in Facebook

Today new messaging features is added in Facebook. As a No.1 social network they made a fantastic feature in their messaging and chat style.

Sunday, 21 October 2012

Image Fetch - ASP.NET



here the code below(.aspx)


<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

List Box - ASP.NET Toolbox



here the code below(.aspx)

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Radio Button with page load event - ASP.NET Toolbox



here the code below(.aspx)

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

implicitly coding defined dropdown image control - ASP.NET



here the code below(.aspx)

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

explicitly user defined dropdown image control - ASP.NET



here the code below(.aspx)

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

    protected void Page_Load(object sender, EventArgs e)
    {
    }

Basic Calculator - ASP.NET



Here the code below

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Linear Convolution Assotiative Law (Prove) in MATLAB



Just create a new file with extension .m and paste the code below in that .m file. Then Run it.

clear all
clc
x=input('enter the x(n) signal : ');
h1=input('enter the h1(n) signal : ');
h2=input('enter the h2(n) signal : ');
s1=input('starting value of x(n) : ');
s2=input('starting value of h1(n) : ');
s4=input('starting value of h2(n) : ');
l1=length(x);
l2=length(h1);
l3=l1+l2-1;
l4=length(h2);
l5=l3+l4-1;
s3=s1+s2;
s5=s3+s4;

Linear Convolution Commutative Law (Prove) in MATLAB



Just create a new file with extension .m and paste the code below in that .m file. Then Run it.

clear all
clc
x=input('enter the x(n) signal : ');
h=input('enter the h(n) signal : ');
s1=input('starting value of x(n) : ');
s2=input('starting value of h1(n) : ');
l1=length(x);
l2=length(h);
l3=l1+l2-1;
s3=s1+s2;

Linear Convolution in MATLAB



Just create a new file with extension .m and paste the code below in that .m file. Then Run it.

clear all;
clc;
x=input('enter the sequence h(n) : ');
h=input('enter the sequence x(n) : ');
s1=input('enter the starting interval of x(n) : ');
s2=input('enter the starting interval of h(n) : ');
l1=length(x);
l2=length(h);
l3=l1+l2-1;
s3=s1+s2;
n1=s1:1:s1+l1-1;
n2=s2:1:s2+l2-1;
n3=s3:1:s3+l3-1;

Circular Convolution in MATLAB



Just create a new file with extension .m and paste the code below in that .m file. Then Run it.

clear all;
clc;
x=input('enter the sequence x(n) : ');
h=input('enter the sequence h(n) : ');
l_x=length(x);
l_h=length(h);
l=max(l_x,l_h);
x=[x,zeros(1,l-l_x)];
h=[h,zeros(1,l-l_h)];
l1=length(x);
m1=length(h);
j=0;

Z Transform in MATLAB


Just create a new file with extension .m and paste the code below in that .m file. Then Run it. 

 clear all;
clc;
syms z;
x=input('enter the sequence x(n) : ');

Tech N Science © 2013