Community Profile

photo

Sandeep Kumar Patel


Last seen: environ 2 ans il y a Actif depuis 2022

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

A répondu
Write a function called mixit
function track=mixit(org,weights) org=double(org); m=(org./65535).*2.-1; weights=weights.'; track=m*weights;...

environ 2 ans il y a | 0

A répondu
Fibonacci Series Using Recursive Function
function v = fibor(n,v) if nargin==1 v = fibor(n-1,[1,1]); elseif n>1 v = fibor(n-1,[v,v(end-1)+v(end)]); elseif n...

environ 2 ans il y a | 0