100% norm2 of a vector
#include<stdio.h>
#include<math.h>
void main()
{
int a[3]={1,2,-1};
int i,total=0; //total is used to store inner product
for(i=0;i<3;i++)
{
total=total+a[i]*a[i];
}
printf("\n norm2 is: %f",sqrt(total));
#include<math.h>
void main()
{
int a[3]={1,2,-1};
int i,total=0; //total is used to store inner product
for(i=0;i<3;i++)
{
total=total+a[i]*a[i];
}
printf("\n norm2 is: %f",sqrt(total));
printf("\n energy if the given signal = norm2 square=%f",total);
}
}
తెరమీద
norm2 is: 2.44
energy if the given signal = norm2 square=6.0000
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.