📄 horzcat.m
字号:
function c = horzcat(a, b)% HORZCAT concatenate two probdist objects horizontally%% Arrays of probdists are made by composing such arrays of respective% expectations and variances.% Copyright (C) 2002 Harri Valpola and Antti Honkela.%% This package comes with ABSOLUTELY NO WARRANTY; for details% see License.txt in the program package. This is free software,% and you are welcome to redistribute it under certain conditions;% see License.txt for details.if (nargin == 1) c = a;else c = probdist([a.e b.e], [a.var b.var]);end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -