photo

Zhenwei Yu


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

2 Questions
0 Answers

RANK
126,501
of 300,611

REPUTATION
0

CONTRIBUTIONS
2 Questions
0 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
 of 21,028

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,811

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

Feeds

View by

Question


How to write code for projected gradient descent?
clc; clear; a=0.01; x=[0;0;0] b=1 for i=1:1000 if b<10^-6 break end r=x-a*f(x) b=proj(r-x) ...

5 years ago | 1 answer | 0

1

answer

Question


How to write a symbolic function array?
function f=g5(x) syms q b x q=[6 7 1;7 11 2;1 2 22] b=[-1;2;3] x=transpose(sym('x',[1 3])) f=1/2*transpose(x)*q*x+transpose...

5 years ago | 0 answers | 0

0

answers