Effacer les filtres
Effacer les filtres

How to convert [2x1 double] for [1x2 double]?

39 vues (au cours des 30 derniers jours)
Leandro B. Castellanos
Leandro B. Castellanos le 29 Août 2018
Modifié(e) : Stephen23 le 29 Août 2018
I have an result in Worspace with [2x1 double], need for result in format [1x2 double]. is possible?.

Réponse acceptée

Pierre845
Pierre845 le 29 Août 2018
You need to transpose the result.
if X is your result, do
X = X';
  1 commentaire
Stephen23
Stephen23 le 29 Août 2018
Modifié(e) : Stephen23 le 29 Août 2018
Note that this answer is not a general solution. The operator shown is the complex conjugate transpose '. If the data is complex (which this question does not specify), then this will give an incorrect output.
The correct general solution is to use (and recommend) the transpose .' operator.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by