how to make a variable as equal input over 30 sections
조회 수: 1 (최근 30일)
이전 댓글 표시
f = 100;
z = 0.5 ;% how to make it as equal inputs over 30 sections
b = 2; c = 4;
Y = f*b*c*z;
disp(Y);
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2014년 4월 21일
f = 100;
z = 0.5*ones(1,30)
b = 2;
c = 4;
Y = f*b*c*z;
disp(Y);
댓글 수: 0
추가 답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!