
C
Spoken Languages:
English
Statistiques
RANG
1 266
of 279 930
RÉPUTATION
44
CONTRIBUTIONS
5 Questions
15 Réponses
ACCEPTATION DE VOS RÉPONSES
40.0%
VOTES REÇUS
8
RANG
of 18 776
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Content Feed
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éponseQuestion
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éponseQuestion
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éponseQuestion
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éponseQuestion
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éponseHow 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é
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
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
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
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
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é
Hello. I have to write a function called occurrence that tests whether a character exists in a string. If it is present, display true and the position (index) of the character. If it is not present, return inf. it gives me an error in line 2. help?!?
function find_letter(L, string) n= length(L); not_found = true; for k = 1:n if isequal(L(k), strin...
plus de 3 ans il y a | 0
| A accepté
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é
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é
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
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é
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
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
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