Community Profile

photo

Luis De Medeiros


Active since 2016

Statistics

  • Knowledgeable Level 1
  • First Answer

View badges

Content Feed

View by

Answered
Exporting cell arrays with different sizes to excel
Do this: xlswrite(filename,A{1},'1','A1'); xlswrite(filename,A{2},'1','A2');

mer än 7 år ago | 0

| accepted

Answered
How to generate random graph of n vertices with random connections in matlab
You can create an adjacency matrix with random 1's and 0's by doing the following: G = round(rand(n)); G = triu(G) + tri...

mer än 7 år ago | 1