![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/18248597_1587563884608_DEF.jpg)
Arooba Ijaz
Followers: 0 Following: 0
Statistik
0 Fragen
2 Antworten
RANG
12.270
of 297.016
REPUTATION
4
BEITRÄGE
0 Fragen
2 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
1
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
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
Feeds
Calculate taxi fare by giving multiple inputs and single output
function [fare] =taxi_fare (d,t) a=ceil(d) b=ceil(t) fare=(b*0.25)+((a-1)*2)+5 end
fast 5 Jahre vor | 0
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) %finding mmr a=M' b=max(a) c=min(a) mmr=b-c %finding mmm d=max(M) e=max(d) f=min(M) g=...
fast 5 Jahre vor | 1