How can I plug vector values into a matrix?
3 次查看(过去 30 天)
显示 更早的评论
I have a matrix that depends on different x, y and z values. I want to put in different vector values in the matrix and make a series of calculations. How can I do this?
2 个评论
Rik
2020-11-6
Do you mean you want to interpolate a 3D array? Can you provide a bit more explaination?
What have you tried?
回答(1 个)
Sreeranj Jayadevan
2020-11-17
If 'Vec' is your 1000 by 3 vector and it is of the form
[x1 y1 z1;
x2 y2 z2;
x3 y3 z3;
........
........
........]
and since you are finding the Jacobian matrix, you can replace the variable x with Vec(i,1), y with Vec(i,2) and z with Vec(i,3) within the Jacobian matrix and then loop through the variable 'i'. (i=1,2,3.....1000)
You can also go through the "jacobian" function and check if it helps with the problem at hand: https://in.mathworks.com/help/symbolic/jacobian.html
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!