Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
~338 People Reached
Favorite Forums
2 Posted Topics
Hi all, I am just learning DMA, and am supposed to write 2 functions utilizing the offset technique, such that a 2-D array starts and ends the index of each dimension as the user specifies. matrix(): creates a 2D array of float type numbers, indexing from -n to n for …
Hi all, I'm trying to implement the QR method for solving the linear system Ax = b. The QR factorization is achieved using Householder method. The main function is [CODE]function x = lin_solve(A,b) [R,v] = householder(A); y = Qt_times_b(v,b); x = R\y;[/CODE] Here are the individual functions: [CODE]function [R,v] = …
The End.
wu_weidong