Info
此问题已关闭。 请重新打开它进行编辑或回答。
help with teachers code?
2 次查看(过去 30 天)
显示 更早的评论
I'm trying to evaluate my teachers code. Can anybody tell me what the line of x{ii}(:,1:(ii-1)) =minInt(:,1:(ii-1)) does?
for ii = 2:N+1 %Initializes the for loop. Takes the terms from 2 to the length of N+1. Will run the for loop for each value.
x{ii} = ones(N+1); %A statement of the for loop. Says that the cell array of x{ii} is a ones matrix of the size of N+1
x{ii}(:,1:(ii-1)) = minInt(:,1:(ii-1)); %This will take the current values of x{ii}, and in any row, column q
x{ii}(:,(ii+1):end) = minInt(:,(ii+1):end); %DO THIS LATER
P(ii) = det(x{ii});
%This sets P of the value of ii at the time to the determinate of x{ii} which is defined above.
end
0 个评论
回答(2 个)
sixwwwwww
2013-12-2
x{ii}(:,1:(ii-1)) =minInt(:,1:(ii-1))
this line of code is accessing all rows values for columns 1 to ii-1 and then saving them in elememt 'ii' of cell array 'x' in the same matriix form. I hope it explains a bit
0 个评论
Image Analyst
2013-12-2
See the FAQ for a good explanation of cell arrays: http://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!