multiplication question in 3 dim

조회 수: 2 (최근 30일)
Ole
Ole 2020년 7월 9일
답변: madhan ravi 2020년 7월 9일
Let say there is matrix from meshgrid X,Y.
How to multiply it through a vector L in building third dimension of a F matrix ?
Each component of L(k) will miltiply X for example for the third dimension.
x = 0:1:5; y = 0:2:40
L = 1:0.1:10; % third dimension
[X, Y] = meshgrid(x,y);
F = (X.*Y).*L % problematic
F is two dimensions in X,Y and third dimention in L
And I would like how to access rows and colums and depth for this matrix ?

채택된 답변

madhan ravi
madhan ravi 2020년 7월 9일
F = (X.*Y) .* reshape(L, 1, 1, [])

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품


릴리스

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by