photo

Arif Istiak Abeg


Rajshahi University of Engineering and Technology

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

Followers: 0   Following: 0

消息

I am currently a B.Sc engineering student studying Electrical and Electronic Engineering. I am good at problem-solving and creative tasks. I dream about being a top-level researcher in the field of applied physics. I also have a passion for theoretical physics and mathematics.

统计学

All
MATLAB Answers

1 个提问
4 个回答

File Exchange

1 文件

Cody

0 个问题
58 个答案

排名
22,127
of 300,081

声誉
2

贡献数
1 个提问
4 个回答

回答接受率
0.0%

收到投票数
1

排名
18,065 of 20,868

声誉
2

平均
0.00

贡献数
1 文件

下载次数
1

ALL TIME 下载次数
27

排名
8,288
of 167,273

贡献数
0 个问题
58 个答案

评分
804

徽章数量
6

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Submission
  • MATLAB Central Treasure Hunt Finisher
  • Promoter
  • Commenter
  • Community Group Solver
  • First Answer
  • Introduction to MATLAB Master
  • Solver

查看徽章

Feeds

排序方式:

已回答
How can I plot phasor diagrams using MATLAB?
You can use compass command compass(U,V) compass(Z) compass(___,LineSpec) compass(ax,___) c = compass(___) Arrows emanatin...

3 years 前 | 1

提问


Having problem in using or statement in switch case
Problem: "Return the number of days in a given month in 2017. If the input is not a valid month number, return -1. You cannot u...

5 years 前 | 1 个回答 | 0

1

个回答

已回答
Sorting an array in matlab
Hope it will work : A= [12,8,15,6,26]; z=numel(A); for c=1:z for k=c+1:z if A(c)<A(k) x=A(c ); A( c) =A(k); A(k)=x; e...

5 years 前 | 0

已回答
I have a code but can't execute it. The code starts like this
this is function generator. You have to new script and then paste it there then save it now you can use "GPcore()" as a custo...

5 years 前 | 0

已回答
Sorting an array in matlab
Use the following code : A=[12,8,15,6,26]; Ans = sort(A)

5 years 前 | 0