photo

Chenguang Yan


njust

Last seen: plus de 2 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Message

PhD candidate

Statistiques

All
MATLAB Answers

4 Questions
6 Réponses

Cody

0 Problèmes
123 Solutions

RANG
33 620
of 300 365

RÉPUTATION
1

CONTRIBUTIONS
4 Questions
6 Réponses

ACCEPTATION DE VOS RÉPONSES
50.0%

VOTES REÇUS
1

RANG
 of 20 933

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
1 437
of 168 262

CONTRIBUTIONS
0 Problèmes
123 Solutions

SCORE
1 768

NOMBRE DE BADGES
10

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 2
  • Revival Level 1
  • First Answer
  • Explorer
  • Thankful Level 1
  • Promoter
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver

Afficher les badges

Feeds

Afficher par

Question


How to solve a system of equations which contains mod() function?
eqn represents a system of equations to be solved. x = sym('x',[1 7],'integer'); assumeAlso(x>=0); c = [1 2 1 -2 +2 0 -3;... ...

plus de 4 ans il y a | 1 réponse | 0

0

réponse

Question


Trouble in rewriting the for loop as a parfor loop
I want to reduce unnecessary calculations in the loop, and this is the sample code for "for" loop which reduce the number of cal...

presque 5 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
write an equation with graph
This might help you: SF = [7,8,9,10,11,12]; CR = [1,2,3,4]; BW = [125,250,500]; BW_fixed = BW(1); % fixed Bandwidth [X...

environ 5 ans il y a | 0

Réponse apportée
Write M file with while loop, which computes factorial of any x, (x=12).
f = 12; x = f; fact = x; while x>1 x = x-1; fact = fact*x; end disp(fact) % assert(isequal(fact,factorial(f)))...

environ 5 ans il y a | 0

Réponse apportée
change the lines' widths in a stem plot, without changing the markers edges widths?
You can change the value of h2.SizeData to adapt to h1.LineWidth close all x = 1:10; y = [2 5 4 1 2 4 1 8 1 2]; h1 = stem(x,...

environ 5 ans il y a | 0

Réponse apportée
Plotting multiple vertical lines with a for loop
Try this sz = size(SampleDepth,1); for i = 1:sz xline(SampleDepth(i)); end

environ 5 ans il y a | 0

Réponse apportée
what is wrong?
Misspelling : cox -> cos * (Matrix multiplication) -> .* (Multiplication) Try this: x = -3:0.1:3 y = sin(x).*cos(2*x)+1 plo...

environ 5 ans il y a | 0

Question


How to call Mathematica in Matlab to evaluate the symbolic anonymous function?
% I need to perform symbolic calculations x1 = sym('x1'); x2 = sym('x2'); % The actual expression is very complicated % Th...

environ 5 ans il y a | 1 réponse | 1

1

réponse

Réponse apportée
How to convert an expression to a function with lossless precision?
I uploaded the compressed package, which includes a .mat file and a .m file. After decompression, the problem should be reproduc...

environ 5 ans il y a | 0

Question


How to convert an expression to a function with lossless precision?
I use matlabFunction to convert an expression to an anonymous function, but the convertion of matlabFunction has a loss of preci...

environ 5 ans il y a | 3 réponses | 0

3

réponses