Community Profile

photo

ERTIZA HOSSAIN SHOPNIL


Last seen: 2 years ago Active since 2020

Statistics

  • First Answer

View badges

Content Feed

View by

Answered
matlab loops/if statements help for a beginner
function [summa,index]= max_sum(v,n) m=length(v); if m<n summa=0; index=-1; else summa = 0...

3 years ago | 0

Answered
Solving 2nd part of minimax question
function [mmr,mmm]= minimax(x) A=x'; mmr=max(A)-min(A); mmm=(max(A,[],'all')-min(A,[],'all')); end

4 years ago | 0