Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
trying to understand one line at the program
조회 수: 1 (최근 30일)
이전 댓글 표시
hello every ones!!! im trying to understand the last line at this program? clear all b = 2500; a = 52; r = rand(1,b) w = ceil(b/a); q = 2*r - 1; q = [q zeros(1,a*w-b)];
does someone can help me and light my eyes bout this one (i know the zeros__ command but i cant understand the meaning when i right the varable 'q' before it....? thank u very much for your help!
댓글 수: 0
답변 (1개)
Sean de Wolski
2011년 5월 10일
You're concatenating the variable q column-wise with zeros. Break it down:
q = 42;
a = 1;
w = 10;
b = 3;
q = [q zeros(1,a*w-b)]
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!