photo

amjad khan


Last seen: 約4年 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

0 質問
3 回答

ランク
7,194
of 297,503

評判
6

コントリビューション
0 質問
3 回答

回答採用率
0.00%

獲得投票数
3

ランク
 of 20,449

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,017

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • First Answer

バッジを表示

Feeds

表示方法

回答済み
if-statement with conditions.
function out(condition,in1,in2) if condition>0 % it is logical out=in1; else out=2; end

5年弱 前 | 0

回答済み
Calculate taxi fare by giving multiple inputs and single output
function fare=taxi_fare(distance,time) distance=ceil(distance-1) time=ceil(time) fare=5*(2+(distance-1)+0.25*time...

5年弱 前 | 1

回答済み
A basic question of matrix indexing can't get a proper output
A = [1:5; 6:10; 11:15; 16:20]; v=A(:,2) % assigning variable v to the second column of matrix "A" A(4,:)=0 % changing all the ...

5年弱 前 | 2