Jamal Nasir - MATLAB Central
photo

Jamal Nasir


Last seen: 5 months ago Active since 2018

Followers: 0   Following: 0

Message

Computer Sciences Department

Statistics

All
CodyMATLAB AnswersFile ExchangeFrom 05/18 to 04/25Use left and right arrows to move selectionFrom 05/18Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
8 Answers

File Exchange

1 File

Cody

3 Problems
626 Solutions

RANK
4,236
of 297,999

REPUTATION
12

CONTRIBUTIONS
0 Questions
8 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
2

RANK
19,458 of 20,519

REPUTATION
0

AVERAGE RATING
0.00

CONTRIBUTIONS
1 File

DOWNLOADS
1

ALL TIME DOWNLOADS
4

RANK
216
of 160,124

CONTRIBUTIONS
3 Problems
626 Solutions

SCORE
6,539

NUMBER OF BADGES
5

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • MATLAB Mini Hack 2022 Participant
  • Knowledgeable Level 1
  • First Submission
  • Scholar
  • Commenter
  • CUP Challenge Master
  • Creator
  • Solver
  • First Answer
  • Revival Level 1

View badges

Feeds

View by

Answered
Problem with looping: the loop does not stop
%%% you can try this it work good %%%% clc clear Lw=106.5 hs=80 hr=1.5 a_air=0.0001 d=1:8000 La=[]; for i=1:8000 ...

5 years ago | 1

| accepted

Answered
how to fill in the image by connecting every point in the image in a bw image
%%%%%%%%%%%% you can use Morphlogical operation %%%%%%%%%% using sphere with your tested redius after fiil it se=strel('spher...

5 years ago | 0

Answered
How do I rearrange these matrix values?
%%%% if your initial matrix is a the matrix c is the result b=a' c=reshape(b,4,3)

5 years ago | 0

Answered
How to use the output of a function as the same function input?
you can use for statement or while as follow x=initial_Value y=[]; for i=1:NoIteration [a,b]=func(x) y=[y;a,b]; x=[a,b]; %...

5 years ago | 0

Answered
Histogram with data frequency
%%%%%%% you can use this code %%%%%%%%%%% a=unique(x); b=length(a); for i=1:b c(i)=sum(y(x==a(i))); end bar(c) %%%%%%...

5 years ago | 0

Answered
what is wrong with this code?
the variable temp1 is not single value. it is a vector so need to check the equation

5 years ago | 0

Answered
round robin Loop.... help plz
%%% this code for Calculate Average waiting Time in Round Robin and Average Turn around Time %%%% by Jamal Nasir %%%% Univ...

7 years ago | 1

Answered
Round Robin Scheduling algorithm
%%% this MATLAB code for calculate Average waiting time for Round Robin CPU Scheduling %%% %%% edited by Jamal Nasir %%%%% Unve...

7 years ago | 0