stewart-simscape/old/plot_max_positions.m

20 lines
178 B
Mathematica
Raw Normal View History

%% Script Description
%
%%
clear; close all; clc;
%%
init_simulink;
2018-05-03 18:14:24 +02:00
%%
[X, Y, Z] = getMaxPositions(stewart);
2018-05-03 18:14:24 +02:00
%%
2018-05-03 18:14:24 +02:00
figure;
hold on;
mesh(X, Y, Z);
2018-05-08 11:48:09 +02:00
grid on;
2018-05-03 18:14:24 +02:00
colorbar;
hold off;