sum of upper triangle

function f=squaredsum(x,A) sum=0; temp=x-A*A'; for i=1:73 for j=i+1:73 sum=sum+temp(i,j); end end f=sum;

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.