problem with matrix dimension
显示 更早的评论
Hi
i have matrix (51*500) contain values for som properties but i want to put thi atrix along horiziontal axis for 80 position wich the final dimension becoms 51*80?
回答(1 个)
How are input and output related? Maybe one of this methods do, what you need:
x = rand(51, 500);
y1 = x(:, 1:80); % First 80 columns
y2 = x(:, end - 79:end); % Last 80 columns
y3 = interp1(1:500, x.', linspace(1, 500, 80)).'; % Linear interpolation
3 个评论
RADWAN A F ZEYADI
2022-2-8
RADWAN A F ZEYADI
2022-2-8
Jan
2022-2-8
Remember, that I still do not know, what you want to do. "Doesn't work" does not explain in any way, what is not working. So without knowing, what you want to achieve and what is failing, there is no chance to help you.
类别
在 帮助中心 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!