필터 지우기
필터 지우기

how can i make the program to chose a random value of (w) ,, if (m) is matrix input

조회 수: 2 (최근 30일)
u=(t.*sin(3.*t)).^m;
w=diff(u,t,2);
dy1=diff(y,t,1);
dy2=diff(y,t,2);
y(t)=dsolve(dy2-(5*dy1)+(4*y)==randi(w),dy2(0)==0,dy1(0)==0,dy2==0,dy1(0)==0);

채택된 답변

Image Analyst
Image Analyst 2018년 3월 10일
Try randi():
randomIndex = randi(length(w), 1);
randomW = w(randomIndex);
or something like that.
  댓글 수: 3
Image Analyst
Image Analyst 2018년 3월 10일
I don't think that's related to choosing a random value from w.
Mohammad Adeeb
Mohammad Adeeb 2018년 3월 10일
what can i do .. i have to do this assignment

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by