Apply a function to a specific column of multiple matrices?

2 次查看(过去 30 天)
Hi Guys. I would very like to have help on this. I have 4 sensors that give me 4 double matrices. I'd like to apply a function to convert mm into m, but I would like to create it for each column at a time. I know how to do that for both columns of each matrix, but I like to do that separetely just to have different outputs for each axis in the matrix.
For instance: I have 4 matrices called Sen1 to Sen4. They are double matrices 10000x2. I'm trying this:
for i=1:4
eval(['XSen' num2str(i) '=Sen' num2str(i) './1000;'])
end
But I would like to apply it only for the first column, and after to the second, changing XSen to Zsen. Any thought on how to solve it.
Thanks.

采纳的回答

Clayton Gotberg
Clayton Gotberg 2021-4-17
编辑:Clayton Gotberg 2021-4-17
When you use element-wise multiplication with a matrix and a vector, MATLAB makes some assumptions to make the code simpler. For example,
A = [1 1; 2 2; 3 3];
B = [10 1];
A.*B
% What MATLAB actually does:
[1 1; 2 2; 3 3].*[10 1; 10 1; 10 1]
% Result:
A.*B = [10 1; 20 2; 30 3];
So, you can create XSen = Sen.*[1/1000 1].
Instead of creating a series of variables with eval, just write the four lines in this way. It will be just as easy and you will avoid the danger of using eval as well as making your code far more understandable.
  3 个评论
Clayton Gotberg
Clayton Gotberg 2021-4-17
No one will tell you to use eval in this application. It is a terrible misuse of that tool.
If you must use it here, you need to add the indexing for the column that you want to apply the transformation to.
eval(['XSen' num2str(i) '=Sen' num2str(i) '(:,2)./1000;']) %for example
Seriously, though, don't do it this way. It's worse in every way that I can think of and the only benefit is that you don't have to name individual variables. Instead, just use a cell array or a structure.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by