Column vector with interval
Mostra commenti meno recenti
Hi all, I'm looking for a way to create a column vector using something similar to "linspace". I saw that this is used to create ROW vectors with a starting point, an ending point and an interval (2,10,0.1). I should do a column vector for 2 to 0 with an interval of -0.1. Every time I try to do that I receive the "error (?)" Empty matrix: 1-by-0. How can I solve the problem? Is there a command as linspace for column row?
Risposta accettata
Più risposte (2)
Azzi Abdelmalek
il 25 Feb 2015
v=2:-0.1:0
v=v'
लिनस्पेस और : ऑपरेटर दोनों ही पंक्ति सदिश बनाते हैं। लेकिन क्या होगा यदि आपको रैखिक रूप से स्थानित स्तंभ सदिश की आवश्यकता है? ट्रांसपोज़ ऑपरेटर (') पंक्ति सदिश को स्तंभ सदिश में परिवर्तित करता है। x = 1:3 x = 1 2 3 x = x' x = 1 2 3 कार्य ट्रांसपोज़ ऑपरेटर का उपयोग करके पंक्ति सदिश से स्तंभ सदिश में b को ट्रांसपोज़ करें।
The linspace and : operators both create row vectors. But what if you need a linearly spaced column vector? The transpose operator (') converts a row vector to a column vector. x = 1:3 x = 1 2 3 x = x' x = 1 2 3 Function Transpose b from a row vector to a column vector using the transpose operator.
Categorie
Scopri di più su Debugging and Analysis in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!