matlab numel函数

含义:返回数组A中元素个数。若是一幅图像,则numel(A)将给出它的像素数
语法格式:
n = numel(A);
n= numel(A,条件);

示例:
a=rand(4)

a =

0.8147    0.6324    0.9575    0.9572
0.9058    0.0975    0.9649    0.4854
0.1270    0.2785    0.1576    0.8003
0.9134    0.5469    0.9706    0.1419

n =

16

n=numel(a,a>0.5)

n =

10

本文链接:https://my.lmcjl.com/post/3204.html

展开阅读全文

4 评论

留下您的评论.