photo

Pascale Bou Chahine


Last seen: 대략 5년 전 2020년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

11 질문
0 답변

순위
180,918
of 300,886

평판
0

참여
11 질문
0 답변

답변 채택
0.0%

획득한 표
0

순위
 of 21,104

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 171,502

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

Feeds

보기 기준

질문


Solving a least squares problem using QR decomposition
"Given the least squares problem ||b - Ax||_2 = min_{y in R^n} ||b - Ax||_2 where A in R^{mxn} and b in R^m are given, and A is...

대략 5년 전 | 답변 수: 1 | 0

1

답변

질문


solving a least square problem with an algorithm

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


Modifying an algorithm to perform BLAS1 operations
I am asked to modify the following algorithm (LU decomposition of A) to perform BLAS1 operations instead of scalar operations. H...

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


Computing number of flops
Let A in R^{nxn}. (a) Compute the number of flops needed to compute A^k using matrix-matrix multiplications. (b) Assuming th...

5년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Multiplying two square matrices by performing vector operations
function C=multiply(A,B) [n,n] = size(A); [n,n]=size(B); %C=zeros(n,n); for j=1:n for i=1:n C(i,j)= A(i,:).*B(...

5년 초과 전 | 답변 수: 1 | 0

1

답변

질문


What is the most efficient algorithm for multiplying a square matrix by an upper triangular matrix
If A and B are square matrix, and B is an upper triangular matrix, then what is the most efficient algorithm to calculate C = A ...

5년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Parallelizing algorithms and finding the number of words each processor needs
Assuming that m = n = p is divisible by 4, and that 4 processors are computing the matrix-matrix multiplication C = AB where A, ...

5년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Modify an algorithm to perform vector operations by eliminating the inner most for loop
Let A and B be square matrices (both stored column-wise) in R^{nxn} with B an Upper Triangular matrix. Write the MATLAB algorith...

5년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Computing the outer product (BLAS 2 operation) raised to the power k using the least number of flops
Explain how (xy^T)^k can be computed using the least number of flops, where x, y in R^n are vectors. Then write the correspondin...

5년 초과 전 | 답변 수: 2 | 0

2

답변

질문


Storing the generated matrices from a for loop into cell arrays and access them later to multiply them altogether
I have to write the corresponding MATLAB algorithm to get the first column of M = (A - x_k*I)(A - x_(k-1)*I)(A - x_1*I), where A...

5년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Write a MATLAB algorithm takes as input the vector x and computes C rowwise
Say I have a vector x in R^3, such that x = [1 2 3]. I want to form from x, a matrix C = [1 2 3; 3 1 2; 2 3 1]. So, basically, t...

5년 초과 전 | 답변 수: 1 | 0

1

답변