Column vector with interval
1,081 ビュー (過去 30 日間)
古いコメントを表示
AnnaMaria Accardo
2015 年 2 月 25 日
コメント済み: W. Owen Brimijoin
2015 年 2 月 26 日
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?
0 件のコメント
採用された回答
W. Owen Brimijoin
2015 年 2 月 25 日
There are two ways to approach this and I think you're conflating the two:
Here's one option
colvec = [2:-.1:0]';
Here's the other:
colvec = linspace(2,0,21)';
Note that in the first example, you are specifying the interval (which must be negative) and this determines how many elements you end up with. In the second you are explicitly telling linspace how many elements you want (that's the 3rd argument for linspace) and this determines the interval between them.
In both cases the output is a row vector, so the transpose (') operator is used.
7 件のコメント
Adam
2015 年 2 月 25 日
It's the same thing as a sensible 90-degree clockwise rotation rather than a Matlab counter-clockwise rotation!
W. Owen Brimijoin
2015 年 2 月 26 日
Jan Simon, thank you, you are right that square brackets are not needed here! And Jos, rotation is a loaded word, for sure. In writing my response I had considered and discarded phrases like 'tipped upright,' 'flopped downward,' 'flipped down' and... oh I don't know... 'dangled down?'
The use of "rotation" seemed like a compromise between being intuitive and being correct. I still don't know what's best here!
best,
-Owen.
>
ps. Now I think I like being referred to as Omen Brimijoin. It has a certain dire ring to it.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!