photo

Ahmed Salmi


Last seen: más de 3 años hace Con actividad desde 2020

Followers: 0   Following: 0

Mensaje

Estadística

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
Write a function called minimax that takes M, a matrix input argument and returns mmr, a row vector containing the absolute values of the difference between the maximum and minimum valued elements in each row. As a second output argument called mmm,
function [mmr,mmm]=minimax(m) mmr=max(m')-min(m'); mmm=max(m,[],'all')-min(m,[],'all'); end or function [mmr,mmm]=minimax(...

alrededor de 4 años hace | 1

Respondida
if-statement with conditions.
function out=picker(condition,in1,in2) if condition==true out = in1; elseif condition==false out = in2; en...

alrededor de 4 años hace | 1