What could be possible issue with colon operator here ?
7 ビュー (過去 30 日間)
古いコメントを表示
Hello All . I am new to Matlab and I was trying to scale the allMarks Columns 1 to 3 by a factor of 10 and allMarks Column 4 by a factor of 5 and over write the allMarks matrix with the new values obtained by using colon operator (:) in between . But it is not going as expected . What could be the reason ? ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1426798/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1426798/image.png)
0 件のコメント
採用された回答
Dyuman Joshi
2023 年 7 月 5 日
The colon operator in between the call to columns is incorrect. Remove it.
allMarks = [24 44 36 18;
52 57 68 38;
66 53 69 36.5;
85 40 86 36;
15 47 25 14
79 72 82 45.5];
%Corrected code
Scaled_marks = [allMarks(:,1:3)./10 allMarks(:,4)./5]
3 件のコメント
Stephen23
2023 年 7 月 6 日
編集済み: Stephen23
2023 年 7 月 6 日
"what is the colon doing ?"
The colon operator is used for generating vectors and for indexing. Your example uses both of those:
"For eg , when we say a = [1:5] it prints a = [ 1 , 2 , 3 , 4 , 5 ]"
The colon generates a vector. Square brackets are a concatenation operator... but you are not concatenating that vector with anything, so why are you using superfluous square brackets? Get rid of them:
a = 1:5; % no superfluous square brackets.
"So it means it is dividing the first three columns by 10 and the last column by 5 and printing the new allMarks"
No, it divides the 4th column by 5, not the last column. In general these are not the same thing but they might be for your example matrix.
X = [allMarks(:,1:3)./10 allMarks(:,4)./5]
% ^ ^ all rows
% ^^^ column index array [1,2,3]
% ^ column index array 4
% ^ ^ ^ ^ subscript indexing
% ^ ^ concatenate some arrays together
Each of those indexing operations returns a matrix with the same number of rows, which are concatenated together horizontally. When you want to understand MATLAB code break it down into the smallest parts.
You would benefit from doing the introductory tutorials, which explain basic indexing and concatenation:
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!