필터 지우기
필터 지우기

hi every body , how can I count the number of 1 and 2 and 3 in each cell that corrispond to x,y,z

조회 수: 1 (최근 30일)
clear all
clc
for i=1:10
for j=1:10
for k=1:10
A=10*randn(1)
B=10*randn(1)
C=10*randn(1)
D=10*randn(1)
E=10*randn(1)
F=10*randn(1)
X=A+B
Y=C+D
Z=E+F
[ER{i,j}(1,k), idx{i,j}(1,k)] = min([X,Y,Z]);
end
end
end
  댓글 수: 1
Guillaume
Guillaume 2019년 5월 7일
  • Why are you using loops for this? Everything can be calculated in one line.
  • Why are you storing scalar values in a cell array? A simple 3D matrix would work
  • What 1 and 2 do you want to count? It's very unlikely that a normal distribution will contain either 1 or 2 exactly. Most likely the count is going to be 0 of each.

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

답변 (0개)

카테고리

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

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by