- 1、本文档共8页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
关于 matlab系列无法调用mapminmax函数的解决方法
???????matlab7.0/7.1以及以下版本的函数库中没有mapminmax函数,所以编程调用这个函数时会提示未定义该函数,查了写资料,但是网友回答的太不靠谱了,我自己做了下总结,方法如下:
??????? 1.matlab升级到7.8或者以上版本,这些版本的matlab中自带有mapminmax函数,可以直接调用。
??????? 2.不想升级的话,我们就要自己写mapminmax函数了,这里我提供mapminmax函数的源程序如下:
????function [out1,out2] = mapminmax(in1,in2,in3,in4)
%MPMINMAX Map matrix row minimum and maximum values to [-1 1].
% % Syntax%% [y,ps] = mapminmax(x,ymin,ymax)% [y,ps] = mapminmax(x,fp)% y = mapminmax(apply,x,ps)% x = mapminmax(reverse,y,ps)% dx_dy = mapminmax(dx,x,y,ps)% dx_dy = mapminmax(dx,x,[],ps)% name = mapminmax(name);% fp = mapminmax(pdefaults);% names = mapminmax(pnames);% mapminmax(pcheck, fp);%% Description% % MAPMINMAX processes matrices by normalizing the minimum and maximum values% of each row to [YMIN, YMAX].% % MAPMINMAX(X,YMIN,YMAX) takes X and optional parameters,% X - NxQ matrix or a 1xTS row cell array of NxQ matrices.% YMIN - Minimum value for each row of Y. (Default is -1)% YMAX - Maximum value for each row of Y. (Default is +1)% and returns,% Y - Each MxQ matrix (where M == N) (optional).% PS - Process settings, to allow consistent processing of values.%% MAPMINMAX(X,FP) takes parameters as struct: FP.ymin, FP.ymax.% MAPMINMAX(apply,X,PS) returns Y, given X and settings PS.% MAPMINMAX(reverse,Y,PS) returns X, given Y and settings PS.% MAPMINMAX(dx,X,Y,PS) returns MxNxQ derivative of Y w/respect to X.% MAPMINMAX(dx,X,[],PS) returns the derivative, less efficiently.% MAPMINMAX(name) returns the name of this process method.% MAPMINMAX(pdefaults) returns default process parameter structure.% MAPMINMAX(pdesc) returns the process parameter descriptions.% MAPMINMAX(pcheck,fp) throws an error if any parameter is illegal.% % Examples%% Here is how to format a matrix so that the minimum and maximum% values of each row are mapped to default interval [-1,+1].% % x1 = [1 2 4; 1 1 1; 3 2 2; 0 0 0]% [y1,ps] = mapminmax(x1)%% Next, we apply the same processing
文档评论(0)