i have to find 1000 E matrix of order (12,1)? why am i getting all 999 matrixes of E empty?
    5 views (last 30 days)
  
       Show older comments
    
    Deepesh Kumar Gupta
 on 3 Oct 2021
  
    
    
    
    
    Commented: Deepesh Kumar Gupta
 on 3 Oct 2021
            % Calculation of Y
N=1000;
E=cell(1,N);
Y=zeros(12,1);
for i=1:N
    for k=1:12
        Y(k,1)=(C{i}(k))\(B{i}(k));
    end
end
E{i}=Y;
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
				Find more on Loops and Conditional Statements in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
