photo

Arif Istiak Abeg


Rajshahi University of Engineering and Technology

Last seen: 24 days ago Active since 2020

Followers: 0   Following: 0

Message

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.

Statistics

All
MATLAB Answers

1 Question
4 Answers

File Exchange

1 File

Cody

0 Problems
58 Solutions

RANK
22,152
of 300,364

REPUTATION
2

CONTRIBUTIONS
1 Question
4 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
1

RANK
17,783 of 20,934

REPUTATION
3

AVERAGE RATING
0.00

CONTRIBUTIONS
1 File

DOWNLOADS
3

ALL TIME DOWNLOADS
30

RANK
8,356
of 168,407

CONTRIBUTIONS
0 Problems
58 Solutions

SCORE
804

NUMBER OF BADGES
6

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

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

View badges

Feeds

View by

Answered
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 ago | 1

Question


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 ago | 1 answer | 0

1

answer

Answered
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 ago | 0

Answered
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 ago | 0

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

5 years ago | 0