AKASH KUMAR
Followers: 0 Following: 0
Programming Languages:
MATLAB
Spoken Languages:
Hindi
MATLAB
Spoken Languages:
Hindi
Feeds
已回答
Function to check if a number is divisible by 5
% check "a" is divisible by "b" or not function test = divisibility_test(a,b) if ceil(a/b)-a/b==0 test = true; else ...
Function to check if a number is divisible by 5
% check "a" is divisible by "b" or not function test = divisibility_test(a,b) if ceil(a/b)-a/b==0 test = true; else ...
1 year 前 | 0
已回答
How to label on top and bottom side of the figure
Thanks to Srivardhan Gadila , I have revised the codes and now things look more better. %% TOP and bottom x-tick (xlabel) with...
How to label on top and bottom side of the figure
Thanks to Srivardhan Gadila , I have revised the codes and now things look more better. %% TOP and bottom x-tick (xlabel) with...
2 years 前 | 1
已回答
How to write a code for varying step size ?
clc clear close all %% Variable step size Step_0=2; Step=Step_0; ii=1;theta=0; while true theta= theta+Step; ...
How to write a code for varying step size ?
clc clear close all %% Variable step size Step_0=2; Step=Step_0; ii=1;theta=0; while true theta= theta+Step; ...
2 years 前 | 0
已回答
Manual Code for convolution
% % algorithm to compute convolution clc clear close all x1 = [5,6,1,2]; h = [10,6,4,8,9,5]; N = length(x1)+length(h)-...
Manual Code for convolution
% % algorithm to compute convolution clc clear close all x1 = [5,6,1,2]; h = [10,6,4,8,9,5]; N = length(x1)+length(h)-...
3 years 前 | 1