Array Dimensions

2023-10-20 23:18
文章标签 array dimensions

本文主要是介绍Array Dimensions,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这里主要介绍有关的函数:
1、length
语法为:
numberOfElements = length(array),它的返回值是数组中最大维的元素的数目。这里的数组是MATLAB所允许的任意数据类型以及任意维。
对于一个非空的数组而言,numberOfElements和max(size(array))是等价的。对于空的数组而言,其值为0.
例子:
X = [5, 3.4, 72, 28/4, 3.61, 17 94 89];


length(X)
ans =
     8
Y = rand(2, 5, 17, 13);


length(Y)
ans =
    17
这里Y是四维数组,其中最大维是17,所以length结果为17。


2、ndims
语法:
n=ndims(A),返回的是数组A的维数。在一个数组中维数总是大于等于2的。


3、numel
语法:
n = numel(A)
n = numel(A, index1, index2, ... indexn)
n = numel(A)返回值是数组A中元素的个数n。
n = numel(A, index1, index2, ... indexn)返回的是数组A下标所表示的元素的个数。
例子:
a = magic(4);
a(:,:,2) = a'


a(:,:,1) =
    16     2     3    13
     5    11    10     8
     9     7     6    12
     4    14    15     1


a(:,:,2) =
    16     5     9     4
     2    11     7    14
     3    10     6    15
    13     8    12     1


numel(a)
ans =
    32


>> A=zeros(2,3,4);
>> numel(A)
ans =
    24
>> A
A(:,:,1) =
     0     0     0
     0     0     0
A(:,:,2) =
     0     0     0
     0     0     0
A(:,:,3) =
     0     0     0
     0     0     0
A(:,:,4) =
     0     0     0
     0     0     0
>> numel(A,:,:,1)
ans =
     6


4、size
语法:
d = size(X)
[m,n] = size(X)
m = size(X,dim)
[d1,d2,d3,...,dn] = size(X),
d=size(X)返回的是数组X的每一维的大小,它是一个矢量(vector),其元素个数为ndims(X)的值。如果X只是一个标量(scalar),那么MATLAB把它看做1*1的数组,因此结果为矢量(vector)[1 1]。
[m,n] = size(X)返回的是矩阵(matrix)X的大小,分别赋值给m和n。
m = size(X,dim)返回的数组X的指定维dim(它是一个标量scalar)的大小。
[d1,d2,d3,...,dn] = size(X),对于n>1,返回的是数组X的所有维的大小。个数n=ndims(X),但是如果n!=ndims(X),分情况讨论:
n<ndims(X):di的值为数组X的第i维的大小(0<i<n),但是dn的值为数组X剩下维的乘积。
n>ndims(X):返回值将使多余的变量为1。
例子:
m = size(rand(2,3,4),2)
m =
     3
d = size(rand(2,3,4))
d =
     2     3     4
[m,n,p] = size(rand(2,3,4))
m =
     2
n =
     3
p =
     4
X = ones(3,4,5)
[d1,d2,d3] = size(X)
d1 =       d2 =       d3 =
     3          4          5
[d1,d2] = size(X)
d1 =       d2 =
     3          20
[d1,d2,d3,d4,d5,d6] = size(X)
d1 =       d2 =       d3 =
     3          4          5
d4 =       d5 =       d6 =
     1          1          1


5、iscolumn
语法:iscolumn(V)
iscolumn(V) 返回逻辑值1 (true) ,如果 size(V)返回值为[n 1]并且n为非负值,否则就是逻辑值0(false)。
例子:
V = rand(1,5);
iscolumn(V)
ans =
     0
V1 = V';
iscolumn(V1)
ans =
     1


6、isempty
语法:TF=isempty(A)
如果A是空数组,那么返回值是1(true),否则是0(false)。一个空的数组,至少有一维的值为0,例如0*0或者0*5。
例子:
B = rand(2,2,2);
B(:,:,:) = [];
isempty(B)
ans = 1


7、ismatrix
语法:ismatrix(V)
如果size(V)的返回值[m,n],并且m,n皆为非负值,那么返回值为1(true),否则为0(false)。
例子:
V1 = rand(5,1);
V2 = rand(5,1);
V3 = rand(5,1);
M = cat(2,V1,V2,V3);
ismatrix(M)
ans =
     1


8、isrow
语法:isrow(V)
isrow(V) 返回逻辑值1 (true) ,如果 size(V)返回值为[1 n]并且n为非负值,否则就是逻辑值0(false)。
例子:
V = rand(5,1);
isrow(V)
ans =
     0
V1 = V';
isrow(V1)
ans =
     1


9、isscalar
语法:isscalar(A)
如果size(A)的返回值是[1 1],那么结果为1(true),否则为0(false)。
例子:
A = rand(5);
isscalar(A)
ans =
     0
isscalar(A(3,2))
ans =
     1


10、isvector
语法:isvector(A)
isvector(V) 返回逻辑值1 (true) ,如果 size(V)返回值为[1 n]或者[n 1]并且n为非负值,否则就是逻辑值0(false)。
A = rand(5);
isvector(A)
ans =
     0
isvector(A(3, :))
ans =
     1
isvector(A(:, 2))
ans =
     1

这篇关于Array Dimensions的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/250336

相关文章

【uva】11536-Smallest Sub-Array(区间移动问题)

一个区间移动的问题,1A了,感觉没什么好说的。。 13975926 11536 Smallest Sub-Array Accepted C++ 0.809 2014-08-01 11:00:20 #include<cstdio>#include<cstring>#include<iostream>using namespace std;#define INF 1 << 30

leetCode#448. Find All Numbers Disappeared in an Array

Description Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] inclusive that do not appear in this

做一个问卷考试,标准答案对比用户填写的答案,array_diff 进行差集比对

if( empty(array_diff($answer_mark, $answer)) && empty(array_diff( $answer,$answer_mark))){//用户答题正确}else{// 答题错误} 做一个问卷考试,标准答案对比用户填写的答案,array_diff  进行差集比对   如用户填写的答案变量为answer   标准答案为answer_mark

[LeetCode] 238. Product of Array Except Self

题:https://leetcode.com/problems/product-of-array-except-self/description/ 题目 Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all

[LeetCode] 215. Kth Largest Element in an Array

题:https://leetcode.com/problems/kth-largest-element-in-an-array/description/ 题目 Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not th

MyBatis - 使用foreach迭代List/Array的说明

在 MyBatis 中的 foreach 元素,主要用于迭代 集合数据 以动态生成执行语句;主要有 item、index、collection、open、separator、close 等属性 属性说明         collection:要迭代的数据集对象,必填项         item:迭代出的元素的别名,必填项         index:元素的序号(map时为k

LeetCode - 33. Search in Rotated Sorted Array

33. Search in Rotated Sorted Array  Problem's Link  ---------------------------------------------------------------------------- Mean:  给你一个数组,这个数组是由两个有序的数组拼接成的(无重复元素),在这个数组中查找元素k的下标. anal

[置顶]后缀数组(suffix array)详解

写在前面 在字符串处理当中,后缀树和后缀数组都是非常有力的工具。 其中后缀树大家了解得比较多,关于后缀数组则很少见于国内的资料。 其实后缀数组是后缀树的一个非常精巧的替代品,它比后缀树容易编程实现, 能够实现后缀树的很多功能而时间复杂度也不太逊色,并且,它比后缀树所占用的空间小很多。 可以说,在信息学竞赛中后缀数组比后缀树要更为实用! 因此在本文中笔者想介绍一下后缀数组的基本概念、构造

【CodeForces】266E More Queries to Array... 线段树

E. More Queries to Array... time limit per test 5 seconds memory limit per test 256 megabytes input standard input output standard output You've got an array, consisting of n

c/c++: warning: ISO C90 forbids variable length array ‘a’

文章目录 介绍C99安全问题类似的alloca安全问题的防护 介绍 https://en.cppreference.com/w/c/language/array @item -Wvla @opindex Wvla @opindex Wno-vla Warn if a variable-length array is used in the code. @option{-Wno-v