rdiv.m
资源名称:speech.rar [点击查看]
上传用户:ay_070428
上传日期:2014-12-04
资源大小:11427k
文件大小:0k
源码类别:
语音合成与识别
开发平台:
Matlab
- % function Z=rdiv(X,Y)
- %
- % row division: Z = X / Y row-wise
- % Y must have one column
- function Z=rdiv(X,Y)
- if(length(X(:,1)) ~= length(Y(:,1)) | length(Y(1,:)) ~=1)
- disp('Error in RDIV');
- return;
- end
- Z=zeros(size(X));
- for i=1:length(X(1,:))
- Z(:,i)=X(:,i)./Y;
- end