photo

Arafat Roney


N/A

Last seen: etwa 5 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Nachricht

I am a student at University of Dhaka and studying Electrical and Electronic Engineering.

Statistik

MATLAB Answers

0 Fragen
8 Antworten

RANG
2.015
of 300.343

REPUTATION
32

BEITRÄGE
0 Fragen
8 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
16

RANG
 of 20.926

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.172

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Function to find the next prime number...
function k=next_prime(n) i=n+1; if(isprime(i)) k=i; else while(~isprime(i)) i=i+1; end k=i; end...

mehr als 5 Jahre vor | 2

Beantwortet
Write a function called sparse2matrix that takes a single input of a cell vector as defined above and returns the output argument called matrix, the matrix in its traditional form
function matrix=sparse2matrix(p) m=p{1}(1,1); n=p{1}(1,2); o=p{2}(1,1); s=o.*ones(m,n); for i=3:length(p) r=p{i}(1,1);...

mehr als 5 Jahre vor | 2

Beantwortet
Date Validation Logic and Error message
function valid=valid_date(year,month,day) if((isscalar(year))&&(isscalar(month))&&(isscalar(day))) if((year==abs(fix(yea...

mehr als 5 Jahre vor | 0

Beantwortet
caesar cyphor encryption problem .
function coded=caesar(c,s) n=mod(s,95); sc=c+n; l=length(sc); w=[]; for i=1:l if sc(i)>126 p=31+...

mehr als 5 Jahre vor | 0

Beantwortet
Generate echo to an audio
function output = echo_gen(input, fs, delay, amp) ds = round((delay)*fs); %%CALCULATING DELAY SAMPLE NUMBERS if ds==0 ...

mehr als 5 Jahre vor | 3

Beantwortet
Write a function called blur that blurs the input image
help me finding out the error....this shows "The server timed out while running and assessing your solution.'' function output=...

mehr als 5 Jahre vor | 0

Beantwortet
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function in=saddle(M) [m,n]=size(M); %%SIZE CALCULATED in=[]; %%'in' IS INITIALIZED AS AN EMPTY MATRIX for ii=1...

mehr als 5 Jahre vor | 5