saving . . . saved vector appraoching has been deleted. vector appraoching has been hidden .
vector appraoching
Title
Question
how to represented the vector in 3d view format along with graph


Scilab Vector-Operations 01-02 min 20-30 sec 16-12-25, 5:44 p.m. Mahesh@2009

Answers:

please follow the tutorial
09-02-26, 7:33 p.m. chitra@devi

To represent a vector in 3D view with a graph, you use the X, Y, and Z axes.

14-05-26, 8:18 p.m. rutvijnakti07@gmail.com

To represent a vector in 3D view with a graph, you use the X, Y, and Z axes.

14-05-26, 8:19 p.m. rutvijnakti07@gmail.com

Login to add comment


Start
Define the vector components 
Set origin point as (0,0,0)
Use param3d() to plot the vector
Label axes
Display the graph
Stop
22-04-26, 6:15 p.m. mujahith.232428@sxcce.edu.in


// Define vector components
x = 3;
y = 2;
z = 4;

// Set origin point
xo = 0;
yo = 0;
zo = 0;

// Create coordinates for vector
X = [xo x];
Y = [yo y];
Z = [zo z];

// Plot the vector in 3D
param3d(X, Y, Z);

// Label axes
xlabel("X-axis");
ylabel("Y-axis");
zlabel("Z-axis");

// Display title
title("3D Vector Representation");
14-05-26, 8:20 p.m. rutvijnakti07@gmail.com


// Define vector components
x = 3;
y = 2;
z = 4;

// Set origin point
xo = 0;
yo = 0;
zo = 0;

// Create coordinates for vector
X = [xo x];
Y = [yo y];
Z = [zo z];

// Plot the vector in 3D
param3d(X, Y, Z);

// Label axes
xlabel("X-axis");
ylabel("Y-axis");
zlabel("Z-axis");

// Display title
title("3D Vector Representation");

14-05-26, 8:20 p.m. rutvijnakti07@gmail.com


Log-in to answer to this question.