Harshitha Eshwar - MATLAB Central
photo

Harshitha Eshwar


Last seen: 거의 3년 전 2021년부터 활동

Followers: 0   Following: 0

통계학

All
MATLAB AnswersCodyFrom 11/21 to 01/25Use left and right arrows to move selectionFrom 11/21Use left and right arrows to move left selectionTo 01/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

순위
107,115
of 296,259

평판
0

참여
3 질문
0 답변

답변 채택
33.33%

획득한 표
0

  • Solver
  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


count repeated sequence in an array
data=[0 0 0 1 1 0 0 0 0 0 0 1 1 1 1] L = length(data) result0 = sum (data == 0) result1 = sum (data == 1) ctr1 = 0; ...

대략 3년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

대략 3년 전

질문


find number of zeros in an array
data = [ 0 0 0 1 1 0 0 0 0 0 0 1 1 1] %need the outpout as : length of each zero= (3,6) length of each ones = (2,4)

대략 3년 전 | 답변 수: 1 | 0

1

답변

질문


define an array with 15 abbreviations of the same kind
n= park_assist; m=32; c = cell (1,n); for k = 1:n c{k} = zeros (1,m);

대략 3년 전 | 답변 수: 0 | 0

0

답변
Go to top of page