Watch this video to configure SQL Server 2008 R2 :
Saturday, 1 December 2012
Tuesday, 27 November 2012
How to extend your USB Cable ?
at
19:32
No comments:
Labels:
cable,
communication,
electronics,
extension,
hardwares,
how to,
LAN,
tips,
usb,
wire
Posted by
Unknown
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.
at
20:37
No comments:
Labels:
cell,
common errors,
designing,
electronics,
experiments,
lab,
standard,
tanner eda,
tools,
vhdl,
videos,
vlsi,
xilinx
Posted by
Unknown
Tuesday, 13 November 2012
How to install Gadgets in Windows 8
Here just some steps you have to follow.
1) First install .NET framework and then Right click on Desktop
1) First install .NET framework and then Right click on Desktop
How to install Google on Windows 8
Here step by step procedure to install Google on Windows 8. So, follow the steps -
1) Click HERE
2) Here you will find like
1) Click HERE
2) Here you will find like
Friday, 2 November 2012
How to download torrent file with IDM
at
20:21
No comments:
Labels:
file,
how to,
idm,
internet,
internet download manager,
procedure,
technology,
tips,
torrent,
zbigz
Posted by
Unknown
iPhone 5 launched in India
at
19:52
No comments:
Labels:
aircel,
airtel,
apple,
available,
buy,
india,
iphone,
iphone 5,
launch,
price,
technology,
Technology News,
Technology Updates,
today
Posted by
Unknown
Thursday, 25 October 2012
Windows 8 Launched
After a long waiting finally today Microsoft is launching their most popular product OPERATING SYSTEM
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">
at
14:40
2 comments:
Labels:
.net framework,
asp.net,
c sharp,
c#,
fetch,
image,
microsoft,
programming,
windows
Posted by
Unknown
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">
at
14:36
No comments:
Labels:
.net framework,
asp.net,
button,
c sharp,
c#,
control,
microsoft,
page load event,
radio,
windows
Posted by
Unknown
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">
at
14:33
No comments:
Labels:
.net framework,
asp.net,
c sharp,
c#,
coding,
control,
defined,
dropdown,
image,
implicitly,
microsoft,
programming,
windows
Posted by
Unknown
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)
{
}
at
14:31
No comments:
Labels:
.net framework,
asp.net,
c sharp,
c#,
control,
defined,
explicitly,
image,
microsoft,
programming,
user,
windows
Posted by
Unknown
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">
at
14:29
No comments:
Labels:
.net framework,
asp.net,
basic,
c sharp,
c#,
calculator,
microsoft,
windows
Posted by
Unknown
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;
at
14:26
No comments:
Labels:
assotiative,
computer,
convolution,
language,
law,
linear,
matlab,
programming,
property,
prove,
windows
Posted by
Unknown
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;
at
14:25
No comments:
Labels:
commutative,
computer,
convolution,
language,
law,
linear,
matlab,
programming,
property,
prove,
windows
Posted by
Unknown
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;
at
14:23
No comments:
Labels:
convolution,
language,
linear,
matlab,
programming,
windows
Posted by
Unknown
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;
at
14:22
No comments:
Labels:
circular,
computer,
convolution,
language,
matlab,
programming,
windows
Posted by
Unknown
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) : ');
at
14:21
No comments:
Labels:
computer,
language,
matlab,
programming,
windows,
z transform
Posted by
Unknown
Subscribe to:
Posts (Atom)




