3D DATA evaluation, robot workspace

First: I want to import 4D data (.txt or .xls) to matlab and respresent data with scatter command. I have coordiantes x,y,z and paramter wich represent some value in 3d space. Do you have idea how to do that?
Second: I want to evaluate robot 3d workspace. Can you help me with that?
I have 3 axis robot with axis limitations ( q1=linspace (....)... and x,y,z coordinates in the tool center point.
So i want to sketch 3d workspace. Do you have any idea how to do that?
THANL YOU VERY MUCH

 採用された回答

Walter Roberson
Walter Roberson 2015 年 12 月 14 日

0 投票

num = xlsread('YourFile.xlsx');
x = num(:,1);
y = num(:,2);
z = num(:,3);
V = num(:,4);
pointsize = 20;
scatter3(x, y, z, pointsize, V)
Please expand on what you mean by "evaluate robot 3d workspace" and "sketch 3d workspace". Can you post a link to a sample output?

1 件のコメント

Matej
Matej 2015 年 12 月 14 日
編集済み: Walter Roberson 2015 年 12 月 14 日
Thank you
Something like that
If i have invesrse kinematics and point x,y,z in the top of robot tool, i have also limitations of axis, i want to determine the workspace...

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeROS Toolbox についてさらに検索

質問済み:

2015 年 12 月 14 日

編集済み:

2015 年 12 月 14 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by