Single extension not everywhere?
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    
According to the following page, MATLAB 2019a should have automatic singleton extension:
My tests show that this is not always true:
% A test array
>> x=false(3,3)
  3×3 logical array
   0   0   0
   0   0   0
   0   0   0
% Singleton extension works
>> x([1 3],2)=true
  3×3 logical array
   0   1   0
   0   0   0
   0   1   0
% Singleton extension doesn't work
>> x([1 3],2:3)=[true true]
Unable to perform assignment because the size of the left
side is 2-by-2 and the size of the right side is 1-by-2.
0 件のコメント
採用された回答
  Paul
      
      
 2022 年 3 月 29 日
        The linked blog post does not show assignment (=) included uder "Supported Operators and Functions." It still isn't:
doc bsxfun
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Get Started with MATLAB についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!