Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Simple Question: Taking Some Elements of Variables Based on Number

1 Ansicht (letzte 30 Tage)
Berk Demir
Berk Demir am 24 Apr. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Bx is an array. Size is 6x1.
When I want two rows of members from that, it gives me as it should. If I ask only one row, it gives as second one. Isn't that wrong? Am I doing something wrong? Since I have based my code to the first type, due to second type of output I got errors
K>> B_x([1 2;3 4])
ans =
-25 -24
-23 -22
K>> B_x([1 2])
ans =
-25
-24
  2 Kommentare
Tommy
Tommy am 24 Apr. 2020
When you call B_x([1 2]), even though the indices are a row vector, you get a column vector because B_x is a column vector.
Berk Demir
Berk Demir am 24 Apr. 2020
Bearbeitet: Berk Demir am 24 Apr. 2020
That's OK. But why I get 25 and 24 as row vector in the first instance? In my mind it is just one less row in the second instance. The same type answer should be given to me.

Antworten (0)

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by