- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何输入一个由不匹配向量组成的矩阵,以便缺失值用零填充 0
或不是数字 NaN
?
(显然,可以先创建一个零矩阵,然后可以逐行添加不匹配的向量,但是如果我想将其设为 1 行怎么办?)
示例:
如何输入矩阵,例如:
a = [
1 2 3 4;
1 2 ;
1 ;
];
结果是:
a = [
1 2 3 4;
1 2 0 0;
1 0 0 0;
];
或
c = [
1 2 3 4;
1 2 NaN NaN;
1 NaN NaN NaN;
];
不需要的解决方案:
a = zeros(3,4);
a(1,1:4) = [1 2 3 4];
a(2,1:2) = [1 2 ];
a(3,1:1) = [1 ];
最佳答案
Jos van der Geest 在 MathWorks File Exchange 上为此提交了一个流行且确实非常好的实用程序 -- padcat
.
本质上,它会自动执行您建议手动执行的操作。但是,它使用一些智能连接和索引技巧来非常有效地创建所述矩阵。
这是当前版本:
function [M, TF] = padcat(varargin)
% PADCAT - concatenate vectors with different lengths by padding with NaN
%
% M = PADCAT(V1, V2, V3, ..., VN) concatenates the vectors V1 through VN
% into one large matrix. All vectors should have the same orientation,
% that is, they are all row or column vectors. The vectors do not need to
% have the same lengths, and shorter vectors are padded with NaNs.
% The size of M is determined by the length of the longest vector. For
% row vectors, M will be a N-by-MaxL matrix and for column vectors, M
% will be a MaxL-by-N matrix, where MaxL is the length of the longest
% vector.
%
% Examples:
% a = 1:5 ; b = 1:3 ; c = [] ; d = 1:4 ;
% padcat(a,b,c,d) % row vectors
% % -> 1 2 3 4 5
% % 1 2 3 NaN NaN
% % NaN NaN NaN NaN NaN
% % 1 2 3 4 NaN
% CC = {d.' a.' c.' b.' d.'} ;
% padcat(CC{:}) % column vectors
% % 1 1 NaN 1 1
% % 2 2 NaN 2 2
% % 3 3 NaN 3 3
% % 4 4 NaN NaN 4
% % NaN 5 NaN NaN NaN
%
% [M, TF] = PADCAT(..) will also return a logical matrix TF with the same
% size as R having true values for those positions that originate from an
% input vector. This may be useful if any of the vectors contain NaNs.
%
% Example:
% a = 1:3 ; b = [] ; c = [1 NaN] ;
% [M,tf] = padcat(a,b,c)
% % find the original NaN
% [Vev,Pos] = find(tf & isnan(M))
% % -> Vec = 3 , Pos = 2
%
% This second output can also be used to change the padding value into
% something else than NaN.
%
% [M, tf] = padcat(1:3,1,1:4)
% M(~tf) = 99 % change the padding value into 99
%
% Scalars will be concatenated into a single column vector.
%
% See also CAT, RESHAPE, STRVCAT, CHAR, HORZCAT, VERTCAT, ISEMPTY
% NONES, GROUP2CELL (Matlab File Exchange)
% for Matlab 2008 and up (tested in R2015a)
% version 2.2 (feb 2016)
% (c) Jos van der Geest
% email: samelinoa@gmail.com
% History
% 1.0 (feb 2009) created
% 1.1 (feb 2011) improved comments
% 1.2 (oct 2011) added help on changing the padding value into something
% else than NaN
% 2.2 (feb 2016) updated contact info
% Acknowledgements:
% Inspired by padadd.m (feb 2000) Fex ID 209 by Dave Johnson
narginchk(1,Inf) ;
% check the inputs
SZ = cellfun(@size,varargin,'UniformOutput',false) ; % sizes
Ndim = cellfun(@ndims,varargin) ; %
if ~all(Ndim==2)
error([mfilename ':WrongInputDimension'], ...
'Input should be vectors.') ;
end
TF = [] ; % default second output so we do not have to check all the time
% for 2D matrices (including vectors) the size is a 1-by-2 vector
SZ = cat(1,SZ{:}) ;
maxSZ = max(SZ) ; % probable size of the longest vector
% maxSZ equals :
% - [1 1] for all scalars input
% - [X 1] for column vectors
% - [1 X] for all row vectors
% - [X Y] otherwise (so padcat will not work!)
if ~any(maxSZ == 1), % hmm, not all elements are 1-by-N or N-by-1
% 2 options ...
if any(maxSZ==0),
% 1) all inputs are empty
M = [] ;
return
else
% 2) wrong input
% Either not all vectors have the same orientation (row and column
% vectors are being mixed) or an input is a matrix.
error([mfilename ':WrongInputSize'], ...
'Inputs should be all row vectors or all column vectors.') ;
end
end
if nargin == 1,
% single input, nothing to concatenate ..
M = varargin{1} ;
else
% Concatenate row vectors in a row, and column vectors in a column.
dim = (maxSZ(1)==1) + 1 ; % Find out the dimension to work on
X = cat(dim, varargin{:}) ; % make one big list
% we will use linear indexing, which operates along columns. We apply a
% transpose at the end if the input were row vectors.
if maxSZ(dim) == 1,
% if all inputs are scalars, ...
M = X ; % copy the list
elseif all(SZ(:,dim)==SZ(1,dim)),
% all vectors have the same length
M = reshape(X,SZ(1,dim),[]) ;% copy the list and reshape
else
% We do have vectors of different lengths.
% Pre-allocate the final output array as a column oriented array. We
% make it one larger to accommodate the largest vector as well.
M = zeros([maxSZ(dim)+1 nargin]) ;
% where do the fillers begin in each column
M(sub2ind(size(M), SZ(:,dim).'+1, 1:nargin)) = 1 ;
% Fillers should be put in after that position as well, so applying
% cumsum on the columns
% Note that we remove the last row; the largest vector will fill an
% entire column.
M = cumsum(M(1:end-1,:),1) ; % remove last row
% If we need to return position of the non-fillers we will get them
% now. We cannot do it afterwards, since NaNs may be present in the
% inputs.
if nargout>1,
TF = ~M ;
% and make use of this logical array
M(~TF) = NaN ; % put the fillers in
M(TF) = X ; % put the values in
else
M(M==1) = NaN ; % put the fillers in
M(M==0) = X ; % put the values in
end
end
if dim == 2,
% the inputs were row vectors, so transpose
M = M.' ;
TF = TF.' ; % was initialized as empty if not requested
end
end % nargin == 1
if nargout > 1 && isempty(TF),
% in this case, the inputs were all empty, all scalars, or all had the
% same size.
TF = true(size(M)) ;
end
关于matlab - 使用不匹配的向量创建矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41450131/
在 Matlab 中,您可以选择创建新的“示例”脚本文件以及脚本、函数、类等。创建它们时,它们会获得一个脚本图标。 它们与其他标准脚本文件的处理方式有何不同? 是否有关于这些示例脚本类型的预期用途的文
我正在运行一个不是我自己编写的大 m 文件,它依赖于某些子函数。我想知道是否在所有嵌套函数的任何地方都使用了特定函数(在我的例子中是函数 eig.m(计算特征值))。有没有快速的方法来做到这一点? 亲
Matlab中有一个函数叫 copulafit .我怎样才能看到这个函数背后的代码?许多 Python 的 numpy 和 scipy 函数在 Github 上很容易开源,但由于某种原因我在 Gith
我定义了一个抽象基类measurementHandler < handle它定义了所有继承类的接口(interface)。这个类的两个子类是a < measurementHandler和 b < me
假设有一个矩阵 A = 1 3 2 4 4 2 5 8 6 1 4 9 例如,我有一个 Vector 包含该矩阵每一列的“类”
我有一个在后台运行的 Matlab 脚本。随着计算的进行,它会不断弹出进度栏窗口。这很烦人。 问题是我没有自己写 Matlab 脚本,这是一段很长很复杂的代码,我不想搞砸。那么如何在不修改 Matla
有没有办法从一个 matlab 程序中检测计算机上正在运行多少个 matlab 进程? 我想要恰好有 n 个 matlab 进程在运行。如果我的数量太少,我想创建它们,如果数量太多,我想杀死一些。您当
我正在测试我们在 Matlab 中开发的一个独立应用程序,当时我注意到它的内存使用量(根据 Windows 任务管理器)达到了 16gb 以上的数倍峰值。我决定在编译版本后面的脚本上使用 profil
我面临着一个相当棘手的问题。在 Matlab 中,命令 S = char(1044) 将俄语字母 д 放入变量 S。但是 disp(S) 返回空白符号,尽管内容实际上是正确的: >> S = char
我在这行 MATLAB 代码中遇到内存不足错误: result = (A(1:xmax,1:ymax,1:zmax) .* B(2:xmax+1,2:ymax+1,2:zmax+1) +
我正在寻找一种在 MATLAB 中比较有限顺序数据与非确定性顺序的方法。基本上,我想要的是一个数组,但不对包含的元素强加顺序。如果我有对象 a = [x y z]; 和 b = [x z y]; 我希
我有一个由 1 和 0 组成的二维矩阵。 mat = [0 0 0 0 1 1 1 0 0 1 1 1 1 1 0 0 1 0 0 0 1 0 1 1 0 0 1]; 我需
我可以在 Matlab 中用一组 x,y 点绘制回归线。但是,如果我有一组点(如下图),假设我有四组点,我想为它们绘制四条回归线……我该怎么做?所有的点都保存在 x,y 中。没有办法将它们分开并将它们
我正在尝试使用以下代码在 MATLAB 中绘制圆锥体。但是,当 MATLAB 生成绘图时,曲面中有一个间隙,如下图所示。谁能建议关闭它的方法? clearvars; close all; clc; [
我有一个 map称为 res_Map,包含一组不同大小的数组。我想找到用于存储 res_Map 的总内存。 正如您在下面看到的,看起来 res_Map 几乎不占用内存,而 res_Map 中的各个元素
有没有办法在 MATLAB 中组合 2 个向量,这样: mat = zeros(length(C),length(S)); for j=1:length(C) mat(j,:)=C(j)*S;
已结束。此问题不符合 Stack Overflow guidelines 。它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答它。 关闭 5 年前
我正在尝试将MatLab中的t copula适配到我的数据,并且我的功能是: u = ksdensity(range_1, range_1,'function','cdf'); v = ksdens
大家好,我目前正在尝试使用论文“多尺度形态学图像简化”中的 SMMT 运算符 Dorini .由于没有订阅无法访问该页面,因此我将相关详细信息发布在这里: 请注意,我将相关文章的部分内容作为图片发布。
我在MATLAB中编写代码,需要使用一个名为modwt的函数,该函数同时存在于两个我同时使用的工具箱(Wavelet和WMTSA)中。问题在于,一个版本仅返回一个输出,而另一个版本则返回三个输出。我应
我是一名优秀的程序员,十分优秀!