photo

Bidsitlov


Actif depuis 2016

Followers: 0   Following: 0

Statistiques

MATLAB Answers

5 Questions
2 Réponses

RANG
228 602
of 297 503

RÉPUTATION
0

CONTRIBUTIONS
5 Questions
2 Réponses

ACCEPTATION DE VOS RÉPONSES
40.0%

VOTES REÇUS
0

RANG
 of 20 449

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 158 938

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Réponse apportée
I want to export my Data in a Cell Array to an Excel file, as tidy as possible. I need help with my Matrices, as they are exported with Semi-Colon notation.
The answer has been given here: <http://stackoverflow.com/questions/37530468/i-want-to-export-my-data-in-a-cell-array-to-an-e...

presque 9 ans il y a | 0

Question


I want to export my Data in a Cell Array to an Excel file, as tidy as possible. I need help with my Matrices, as they are exported with Semi-Colon notation.
I have a Cell Array of dimensions 2 by 40, and each cell contains a matrix of dimensions 3 by 3: [3x3 double] [3x3 double...

presque 9 ans il y a | 1 réponse | 0

1

réponse

Question


How can I export Matrices in a Cell data?
I have a cell array which contains matrix data that I want to export: x x x x x ... x x x x x ...

presque 9 ans il y a | 1 réponse | 0

1

réponse

Question


How can I visualize a Matrix Data in Workspace in common Matrix notation, instead of with semicolon notation?
I'm dealing with huge sets of matrices and I want to print them. However in Workspace data is shown as: [x x x; x x x; x ...

presque 9 ans il y a | 1 réponse | 0

1

réponse

Question


Vectorization of a nested for loop, where inner counter depends on outer one.
Hi, I'm trying to vectorize the following code: for i=3:6 for j=i:6 howmuch = howmuch + factorial(j) / factorial(j - i...

presque 9 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
How can I generate all permutations of a matrix, in which value "1" cannot be repeated in any column or row? Rest of the elements are identical, and a number between 0 and 1.
Alright, so personal solution is below: function [matrixlist] = allperms(dim1,dim2,J) howmuch = factorial(dim2) / factor...

presque 9 ans il y a | 0

Question


How can I generate all permutations of a matrix, in which value "1" cannot be repeated in any column or row? Rest of the elements are identical, and a number between 0 and 1.
Each row *must* have at least an element with value 1. Say we have 3 by 4 matrix. Then an acceptable arrangement would be: ...

presque 9 ans il y a | 2 réponses | 0

2

réponses