photo

Hüseyin


自 2014 起处于活动状态

Followers: 0   Following: 0

消息

统计学

  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


QR Factorization Using Householder Transformations
function [Q,R]=QRfactor(A) [m,n]=size(A); R=A; %Start with R=A Q=eye(m); %Set Q as the identity matrix for k=1:m-1...

9 years 前 | 3 个回答 | 1

3

个回答

提问


how to generate a random vector sized 1x100 or 100x1 without the numbers (mod,5)=0 ?
vector sized 1x100 or 100x1 without the numbers (mod,5)=0

9 years 前 | 2 个回答 | 0

2

个回答

提问


How can I generate a random vector between 1-9 with 10 numbers and at least one number should be >2.
X=rand(10,1)*(9-1)+1 How should I change this code to make at least one number >2.

9 years 前 | 3 个回答 | 0

3

个回答

提问


How can I get the numbers from a vector?
X= rand(50,1)*(100-1)+1 I produced 50 random numbers between 1-100 with this code in a vector. I want to write the numbers be...

9 years 前 | 1 个回答 | 0

1

个回答