BetaCodeShareBeta

by Code Solutions Project

Simple solutions for common problems

Matlab
MagRag
function [ A ] = randomMatrix( size )
    A = rand(tam,tam)*10;
end

Matlab
MagRag
function [ A ] = randomMatrix( size )
    A = rand(size,size)*10;
end

Matlab
MagRag
function [ A ] = randomMatrix( siz )
    A = rand(siz,siz)*10;
end

×Oh snap! Something wrong