How to save the value in matrix
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    
hi , how i can save the result in matrix form as of the same size of initial matrix, i mean it only give 1 value i want to save all the values of mat_ele in the matrix form......
regards
0 件のコメント
採用された回答
  Andrei Bobrov
      
      
 2015 年 11 月 21 日
        aa = abs(a);
me = aa - dx;
t = me < 0;
mat_ele = sign(a).*me;
mat_ele(t) = a(t);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Descriptive Statistics についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

