You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm a member of The Carpentries staff and I'm submitting this issue on behalf of another member of the community. In most cases, I won't be able to follow up or provide more details other than what I'm providing below.
I have been reading the course material for Matlab Programming and I find out matrix mathematics is missing in this teaching which is one of the great benefits of using Matlab. It can even be used instead of "for loop" which increase the speed of programming. A section can be added that showed the difference between cross () and dot-cross (.) in addition to compare running time with tic-toc function when "for loop" and cross are used.
An example of this needs a question and data set to describe.
Also, matrix mathematics can be used to solve two equation-two variables quickly.
Example:
2x+3y=5
-2x+4y=10
matlab solution:
A= [2 3; -2 4]
B= [5; 10]
[x; y] = A\B
The text was updated successfully, but these errors were encountered:
I'm a member of The Carpentries staff and I'm submitting this issue on behalf of another member of the community. In most cases, I won't be able to follow up or provide more details other than what I'm providing below.
I have been reading the course material for Matlab Programming and I find out matrix mathematics is missing in this teaching which is one of the great benefits of using Matlab. It can even be used instead of "for loop" which increase the speed of programming. A section can be added that showed the difference between cross () and dot-cross (.) in addition to compare running time with tic-toc function when "for loop" and cross are used.
An example of this needs a question and data set to describe.
Also, matrix mathematics can be used to solve two equation-two variables quickly.
Example:
2x+3y=5
-2x+4y=10
matlab solution:
A= [2 3; -2 4]
B= [5; 10]
[x; y] = A\B
The text was updated successfully, but these errors were encountered: