Community Profile

photo

Chuguang Pan


Last seen: environ un mois il y a Actif depuis 2019

Mechanical Engineer

Programming Languages:
C
Spoken Languages:
English

Statistiques

All
  • First Review
  • Thankful Level 2
  • Project Euler I
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer

Afficher les badges

Content Feed

Afficher par

A répondu
How to take the mean of each four adjacent position in a matrix?
A=randi(10,1536,2048); % test Matrix M=zeros(768,1024); % result Matrix for row=1:768 for col=1:1024 M(row,col...

12 mois il y a | 1

| A accepté

Question


Can not create MATLAB string without MATLAB runtime being initialized.
I create a .NET assembly using a function written in MATLAB. When I want to create a MATLAB String using MWStringArray Class, it...

environ un an il y a | 1 réponse | 0

0

réponse

Question


expression error in Documentation
I think the expression in the image shown below should be , whose derivative is equal to ! Documentation Link

environ un an il y a | 1 réponse | 0

1

réponse

Question


importrobot but can not show visual geometries.
I try to import a robot model by using importrobot function with the input is a Simscape Multibody model. However, when I s...

environ un an il y a | 1 réponse | 0

1

réponse

Question


MATLAB function cross can be applied to symbolic object but Documentation does not explain?
syms x y z vec1=[x y z]; vec2=[x y z]; cross(vec1,vec2)

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

1

réponse

Question


How to build dynamic model in SimMechanics ?
I want to know what method is used by SimMechanics to build dynamic model. Maybe Newton-Euler Method or Lagrangian Form...

environ 3 ans il y a | 1 réponse | 0

1

réponse

A répondu
How do i find a maximum elements in a specific row ?
A=[1,2,3;4,5,6;7,8,9]; M=max(A(2,:))

plus de 3 ans il y a | 1

| A accepté

A répondu
rand command give different answer
All the random number functions, rand, randn, randi, and randperm, draw values from a shared random number generator. Every time...

plus de 3 ans il y a | 0

A répondu
How we can generate generate a noise signal from gauss distribution ??
This is a example for generating a bivariate normal distribusion which is a duplicate of MATLAB Documentation. Maybe it can help...

plus de 3 ans il y a | 0

A répondu
how to fix this error matrix dimension must agree
The p1 matrix is 1x100. nerst(:) will turn a matrix nerst which is 1x100 to 100x1. A matrix with size of 1x100 can't | with ...

plus de 3 ans il y a | 0

A répondu
hello everyone, i am a noob using matlab. please help me i have an equation and 2 unknown variable
The equation μ=(μmax*Cs)/(Ks+Cs ) can be converted to μmax*Cs-Ks*μ=μ*Cs. μ=[0.011;0.059;0.053;0.149;0.125]; Cs=[430;428;...

plus de 3 ans il y a | 0

A répondu
How can I iterate all three cases at once in one script?
Maybe you can use a for loop. You can store functions g1(x), g2(x), g3(x) as a cell array. Such as g1=@(x) sqrt(2*x+3); g2=@(x...

plus de 3 ans il y a | 2

| A accepté

A répondu
How to integrate this function numerically?
You can use Euler formula. V(n+1)=V(n)+h*f(R,V(n)), which f(R,V) is the right side of differential equation. But you need to kn...

plus de 3 ans il y a | 1

| A accepté

A répondu
How can I use a for loop to select values from a table that meet two conditions?
m=1; for i=1:height(tab) if(Aerobic(i)~=Anaerobic(i)) && Aerobic(i)>=0 && Anaerobic(i)>=0 secmet(m, 1:3)=tab(i, ...

plus de 3 ans il y a | 1

| A accepté

A répondu
How can I do this Matrix data operation?
It is Unworkable! For eaxample, every row of new matrix need that there must exist current and angle pairs which generate same ...

plus de 3 ans il y a | 0

A répondu
How to collect a fraction in a certain equation?
Hi Fahmy. I try the matlab function factor, but it get the result as following. syms a b c d e f=(a/3)+(b/3)+(c/3)+(d/3)+(e/3...

plus de 3 ans il y a | 1

| A accepté

A répondu
Adding a column every nth column without replacing existing one
It is every 2th column. Now I put it in Answer this question rowA=size(A,1); colA=size(A,2); B=zeros(rowA,colA*2); B(:,1:2:2...

plus de 3 ans il y a | 1

A répondu
regexp help when comparing strings
The function regexpi needs the second argument expression must be a regular expression! About what is regular expression, you c...

plus de 3 ans il y a | 0

A répondu
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.252760e-17.
It seems that A-lamda*eye(n) is nearly singular, you should check it carefully! mabey you can use another computing method.

plus de 3 ans il y a | 0