NEED URGENT HELP !!!!!!!!!!!!!PLEASE IT'S FOR AN EXAM
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MELIGA NAGA VINCENT THEOPHANE
le 18 Fév 2022
Commenté : MELIGA NAGA VINCENT THEOPHANE
le 18 Fév 2022
I want to compute the homegenous matrix and Jacobian of a robot.i've already wrote this but i want to test it . i want to read joint's DH value form a xlsx file but in that xlsx fie it's also sym variable and i want to read it as sym value. That's the fie i want to import as you see. i use readmatix but show me
DH = readmatrix('DH.xlsx');
theta = DH(2:length(DH),4);
d=DH(2:length(DH),3);
alpha = DH(2:length(DH),2);
a =DH(2:length(DH),1);
![Result after importation](https://www.mathworks.com/matlabcentral/answers/uploaded_files/898735/Result%20after%20importation.png)
![EXCEL file](https://www.mathworks.com/matlabcentral/answers/uploaded_files/898740/EXCEL%20file.png)
0 commentaires
Réponse acceptée
Arif Hoq
le 18 Fév 2022
have a look here
[number,str,all]=xlsread('Book4.xlsx');
for col=5:2:size(all,2)
rowidx=find(number(:,col)==0);
all(rowidx+1,:)=[];
end
DH=all;
theta = DH(2:length(DH),4);
d=DH(2:length(DH),3);
alpha = DH(2:length(DH),2);
a =DH(2:length(DH),1)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import and Analysis dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!