Problem with Vercat error
1 回表示 (過去 30 日間)
古いコメントを表示
Hello, Why i have vercat error? They are the same , but i have and error. Please view the image. Thanks
<<
>>
0 件のコメント
採用された回答
Star Strider
2016 年 2 月 15 日
They’re not the same:
B = [82:246, 117:351];
RowA = 82;
ColumnA = 117;
B_elements = [RowA 246; ColumnA 351]
B_elements_range = diff(B_elements,[],2)
B_elements =
82 246
117 351
B_elements_range =
164
234
0 件のコメント
その他の回答 (1 件)
Dani D
2016 年 2 月 15 日
1 件のコメント
Star Strider
2016 年 2 月 15 日
It seems that you want to create it from an existing matrix.
This works:
A = randi(99, 250, 400); % Create Original Matrix
B = A(82:246, 117:351); % Create New Matrix From Elements Of ‘A’
参考
カテゴリ
Help Center および File Exchange で Denoising and Compression についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!