access to a element of a matrix
Show older comments
Basically I need to create a matrix of current values and access each element and call the same value in an equation.
I=[-40 -30 -20 -10 0 10 20 30 40];
w=0.035;
h=1.57;
% T=215.3*I^2*w^-1.5*h^-1 This the equation where I need to acces the I value each time from
1 Comment
Sachin Shridhar Bhat
on 6 Jun 2019
Accepted Answer
More Answers (1)
pankhuri kasliwal
on 6 Jun 2019
You can access elements of an array using
A = [1 2 3 4 5];
A(1);
if you have a matrix then you can access the elements using
a = [1 2 3;4 5 6;7 8 9]
a(2,3);
a(2,3) provides with the element 6 in 2nd row, 3rd column
T=215.3*I^2*w^-1.5*h^-1
instead of this you can do
T = 215.3 * (I .* I) * w^-1.5 *h^-1 ;
1 Comment
Sachin Shridhar Bhat
on 6 Jun 2019
Categories
Find more on Mathematics and Optimization in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!