⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 removenan.m

📁 hopfield neural network for binary image recognition
💻 M
字号:
% REMOVENAN - removes NaNs from an array %% Usage: m = removenan(a, defaultval)%%   a          - The matrix containing NaN values%   defaultval - The default value to replace NaNs%                if omitted this defaults to 0%% See Also: FILLNAN% Copyright (c) 2004 Peter Kovesi% School of Computer Science & Software Engineering% The University of Western Australia% http://www.csse.uwa.edu.au/% % Permission is hereby granted, free of charge, to any person obtaining a copy% of this software and associated documentation files (the "Software"), to deal% in the Software without restriction, subject to the following conditions:% % The above copyright notice and this permission notice shall be included in % all copies or substantial portions of the Software.%% The Software is provided "as is", without warranty of any kind.% September 2004function m = removenan(a, defaultval)        if nargin == 1	defaultval = 0;    end        valid = find(~isnan(a));        m = repmat(defaultval, size(a));    m(valid) = a(valid);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -