photo

amjad khan


Last seen: 4 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
3 个回答

排名
7,206
of 299,891

声誉
6

贡献数
0 个提问
3 个回答

回答接受率
0.00%

收到投票数
3

排名
 of 20,831

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 166,464

贡献数
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 years 前 | 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 years 前 | 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 years 前 | 2