photo

Sandeep Kumar Patel


Last seen: 2 years 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer

查看徽章

Feeds

排序方式:

已回答
Write a function called mixit
function track=mixit(org,weights) org=double(org); m=(org./65535).*2.-1; weights=weights.'; track=m*weights;...

2 years 前 | 0

已回答
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...

2 years 前 | 0