What is meaning of c(:,1) and . in matlab code
Afficher commentaires plus anciens
I have code .What does it mean?
c(:,1)=0.5*ones(10,1); //What is c(:, 1)?
for i = 1:s
Delta(:,i)=(2*round(rand(2,1))-1).*rand(2,1); //What is .?
end
for m=1:s
P(1,:,1,1,1)= 50*rand(s,1)'; //What is ' and P(1, :, 1,1,1)?
P(2,:,1,1,1)= 0.2*rand(s,1)';
end
1 commentaire
Mhamed jasim Jasim K I
le 14 Mai 2022
what does the code (:,1) mean?
Réponse acceptée
Plus de réponses (2)
dpb
le 26 Avr 2016
1 vote
Start at the beginning of <getting-started-with-matlab> and work through the tutorials to pick up basic syntax quickly...
edwinda ramadahani
le 3 Juin 2022
0 votes
A=[1 4 2;3 1 5], B=[1 5 2;-1 0 1;3 2 4], Q=[6 1 3;-1 1 2;4 1 3]
what is the syntax for (BA)+Q
1 commentaire
If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks).
You also posted your question as an answer.
As to your question; there are two options of what you could mean, both shown below. Neither works, for different reasons.
A=[1 4 2;3 1 5];
B=[1 5 2;-1 0 1;3 2 4];
Q=[6 1 3;-1 1 2;4 1 3];
try
(B*A)+Q
catch ME,warning(ME.message),end
try
(B.*A)+Q
catch ME,warning(ME.message),end
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!