Peak Amplitude
Blogger news
Home
Projects
Electronics
MATLAB code
C Language
ABOUT
Android Apps
Thursday, 18 September 2014
Calculation BPSK using MATLAB
clc;
p=0:.1:1;
p1=1-p;
a=0:0.1:1;
a1=1-a;
Read more »
Thursday, 11 September 2014
getting started with MATLAB code
calculation Electricity Bill using MATLAB code
clc;
taka1=0; taka2=0; taka3=0; taka4=0;
taka5=0;
unit=input('unit=');
Read more »
Sunday, 10 August 2014
Summation of even and odd element of matrix using MATLAB
clc;
m=input('ROW=');
n=input('Cloumn=');
x=randi([2,5],m,n)
Evensum=0;
oddsum=0;
for i=1:1:m
Read more »
Saturday, 9 August 2014
Leap year calculation using MATLAB code
clc;
Y=input('Please insert Your Year=');
if mod(Y,4)==0
disp('This year is leap year');
elseif mod(Y,4)==0
disp('This year is leap year');
else
disp('This year is not leap year');
end
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)