Second problem uitable

조회 수: 1 (최근 30일)
yue ishida
yue ishida 2011년 11월 2일
i have another problem similarly with before:
m=3; d=5; b=num2cell(zeros(m,d)); b{1,1} = rand; b{1,6} = rand; b{2,7} = rand;
how can I save the 0 filled cells and random number filled cells differently?

채택된 답변

Walter Roberson
Walter Roberson 2011년 11월 2일
iszero = cellfun(@(p) isequal(p,0),b);
Now you can find(iszero) or find(~iszero) or use b(~iszero)
  댓글 수: 1
yue ishida
yue ishida 2011년 11월 2일
thanks...

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

추가 답변 (1개)

yue ishida
yue ishida 2011년 11월 2일
may i know how to solve the problem of uitable. I have input in a 3x15 cells with random number. So, I want to keep some cells unchanged such as row 1 cell 3,7, row 2 cell 8, 9, and row 3 cell 14 when I want to to put random number again to another cells automaticly. How can I do so?

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by