Posts
 
Reputation
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
~307 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for wu_weidong

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 …

Member Avatar for erroldo
0
239
Member Avatar for wu_weidong

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] = …

0
68