Statistica
MATLAB Answers
0 Domande
4 Risposte
RANK
10.830
of 300.037
REPUTAZIONE
4
CONTRIBUTI
0 Domande
4 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
2
RANK
of 167.106
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
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 ...
oltre 2 anni fa | 0
Risposto
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...
oltre 3 anni fa | 1
Risposto
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; ...
oltre 3 anni fa | 0
Risposto
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)-...
oltre 3 anni fa | 1