English 中文(简体)
计算环环环内部的错误 - MATLAB
原标题:Calculating (summing) error inside a for loop - MATLAB

我比较了两个功能,一个是分析解决方案(脱离教科书),另一个是使用我收集的实验数据。

我需要计算两者之间的错误。

 voltage_experimental_offset = xlsread( R21_C19_L21.xlsx , H118:H259 ); 
trigger_experimental = xlsread( R21_C19_L21.xlsx , D118:D259 ); 
t_experimental = xlsread( R21_C19_L21.xlsx , G118:G259 ); 

ii = length(voltage_experimental_offset);   
total = 0;

for i = 1:ii
error = (voltage_experimental_offset(i) - V_C(i) ).^2;  % compute error
total = sum(error(:))                                   % sum error

end

问题是, 总计只显示每次错误 。 < enger > > 我要为每次迭代 添加错误

非常感谢任何帮助

问题回答

您需要索引错误

error = zeros(size(voltage_experimental_offset));
for i = 1:ii
error(i) = (voltage_experimental_offset(i) - V_C(i) ).^2;  % compute error
total = sum(error(:))                                   % sum error

end




相关问题
Memory Leak when using for(object in array) with iPhone SDK

I am running into some serious memory leaks in one of my applications I am building. I have a UINavigatonController that is inside a UITabBarview. Inside the NavView is a MKMap view. When you click an ...

PHP - Foreach loops and ressources

I m using a foreach loop to process a large set of items, unfortunately it s using alot of memory. (probably because It s doing a copy of the array). Apparently there is a way to save some memory with ...

as2 simple for loop not populating textbox

I have got an xml file that brings text into a flash movie in the form of an array, I need to population some textboxes and want to do this using a for loop. My loop look like this: for(var i=...

Weird acting loop in C#

Note: I added actual code snippets. Just scroll to end. // files is created by a OpenFileDialog. public void Function(String[] files, ...) { for(int i; i<files.Length; i++) { ...

iterating over map and array simultaneously in a for loop

I am having some trouble creating a for loop within a constructor to iterate over a map and an array at the same time. Here, it is indicated that this cannot be done with an enhanced for loop. I have ...

Are one-line if / for -statements good Python style?

Every so often on here I see someone s code and what looks to be a one-liner , that being a one line statement that performs in the standard way a traditional if statement or for loop works. I ...

Geocoding town names to their coordinates in a loop

I ve read similar posts, but still didn t find a solution for myself. Basically I have an array with countries+towns in PHP and I need to show them on the map with markers. Here is my code: function ...

热门标签