Matlab Code for Amplitude Modulation

 Program:clc;clear all;t = 0:0.001:1;vm = input('Enter the amplitude of message signal = ');vc = input('Enter the amplitude of carrier signal = ');fm = input('Enter the message frequency = ');fc = input('Enter the carrier frequency = ');m = vm/vc;sm = vm.*sin(2*pi*fm*t);subplot(3,1,1);plot(t,sm);xlabel('Time...
Share:

Matlab Code for Phase Modulation

 Program:clc;clear all;t = 0:0.001:1;vm = input('Enter the amplitude of message signal = ');vc = input('Enter the amplitude of carrier signal = ');fm = input('Enter the message frequency = ');fc = input('Enter the carrier frequency = ');m = input('Enter modulation index...
Share:

Matlab Code for Pulse Code Modulation

 Program:clc;clear all;t = 0:0.0005:20;partition = -1:0.1:1;codebook = -1:0.1:1.1;x = sin(t);[index,quants] = quantiz(x,partition,codebook);subplot(3,1,1);plot(t,x);title('Message Signal');xlabel('Time(s) ---->')ylabel('Amplitude(V) ---->')subplot(3,1,2);plot(t,quants);title('Quantized...
Share:

Matlab Project Topic List for Final Year Submission

 RECONSTRUCTION OF UNDERWATER IMAGE BY BISPECTRUMDESIGN AND ANALYSIS OF BIT INTERLEAVED CODED SPACE-TIME MODULATIONCODING SCHEMES APPLIED TO PEAK-TO-AVERAGE POWER RATIO (PAPR) REDUCTION IN OFDM SYSTEMSDETECTING DOMINANT MOTIONS IN DENSE CROWDSA REAL-TIME ADAPTIVE LEARNING METHOD FOR DRIVER EYE DETECTIONDROP PARAMETER ESTIMATION FROM UNDERWATER...
Share:

C program to display the following pattern of numbers

 11    21    2    31    2    3    41    2    3    4    51    2    3    4    5    61    2    3    4    5    6    7Program code#include <stdio.h>#include...
Share:

C program to display the following pattern

 **    **    *    **    *    *    **    *    *    *    **    *    *    *    *    **    *    *    *    *    *    *Program code#include <stdio.h>#include...
Share:

C program to check whether the given number is odd or even

 Program code#include <stdio.h>#include <conio.h>void main(){int a;clrscr();printf("Please input a number to find whether it is odd or even.\n");scanf("%d",&a);if ((a%2)==0)printf("%d is even.\n",a);elseprintf("%d is odd.\n",a);getch();}Example of outputPlease input a number to find whether it is odd or even.700700 is ev...
Share:

C program to find whether the given number is prime or composite

 Program code#include <stdio.h>#include <conio.h>void main(){int question=0, i=2;clrscr();printf(“Please input a positive integer to find out whether it is a prime number or composite number.\n”);scanf(“%d”,&question);if (question==1){printf(“%d is neither prime nor composite.\n”, question);goto stop;}if (question==2){printf(“%d...
Share:

C program to display the reverse of the given number

 Program code#include <stdio.h>#include <conio.h>void main(){long int temp=0, number=0, reverse=0;clrscr();printf(“Please input a whole number to get its reverse.\n”);scanf(“%ld”,&number);for (temp=number;temp>0;temp=temp/10)reverse=(reverse*10)+(temp%10);printf(“The reverse of %ld is %ld\n”, number, reverse);getch();}Example...
Share:

C program to swap two numbers

 Program code#include <stdio.h>#include <conio.h>void main(){int a=0, b=0, temp=0;clrscr();printf(“Please input a number to store in a.\n”);scanf(“%d”,&a);printf(“Please input a number to store in b.\n”);scanf(“%d”,&b);printf(“Before swapping.\na=%d\nb=%d\n”, a,b);/*displays the values of a and b before swapping.*//* swapping...
Share:

C program to print a fractional number after rounding it to two decimal places

Program code#include <stdio.h>#include <conio.h>void main(){float a;clrscr();printf("Please insert a number.\n");scanf("%f",&a);printf("The number you have entered is %.2f",a);getch();}Example of outputPlease insert a number.7.7777The number you have entered is 7.78&nb...
Share:

MATLAB Code for Histogram Equalization

 The process of adjusting intensity values can be done automatically using histogram equalization. Histogram equalization involves transforming the intensity values so that the histogram of the output image approximately matches a specified histogram. By default, the histogram...
Share:

Matlab Project On Types of Breast Cancer Detection Using Matlab Source Code

  ABSTRACT            Cancer is the second cause of death in the world. 8.8 million patients died due to cancer in 2015. Breast cancer is the leading cause of death among women. Several types of research have been done on early detection of...
Share:

Matlab Project for DCT Based Steganography Hide Text in Image Source Code

 ABSTRACT            Steganography is the science and art of secret communication between two sides that attempt to hide the content of the message. It is the science of embedding information into the cover image without causing a loss in the...
Share:

DES Encryption Decryption Using Matlab Project Source Code - Cryptography Using DES Algorithm

  ABSTRACT            The data encryption standard is also known as DES. DES has been the most extensively used encryption algorithm standard in recent times. Encryption and decryption comprise of cryptography. Cryptography terminology is used...
Share:

Popular Posts

Contact Form

Name

Email *

Message *

Copyright Matlab Project Codes All rights Reserved. Powered by Blogger.

Blog Archive