photo

Harshvardhan


Last seen: 9 months 前 自 2023 起处于活动状态

Followers: 0   Following: 0

消息

Programming Languages:
Python
Spoken Languages:
Hindi
Pronouns:
He/him

统计学

All
  • First Answer
  • Promoter
  • Solver

查看徽章

Feeds

排序方式:

已回答
taking the inverse of multiple matrix's
% Define the matrices A = [1 2; 3 4]; B = [5 6; 7 8]; C = [9 10; 11 12]; % Create a cell array of the matrices matrices =...

1 year 前 | 0

已回答
create a Moving Box Simulation in 1D
% Set up initial conditions x = [0 10]; % Box starts at position 0, ends at position 10 v = 1; % Box moves at a con...

1 year 前 | 0

已回答
Cos^2(2theta) 3d polar graph in MATLAB
% Define theta and r vectors theta = linspace(0, 2*pi, 360); r = cos(2*theta).^2; % Convert polar coordinates to Cartesian ...

1 year 前 | 0

已回答
How do you draw a plane on Matlab?
% Define the x-y-z coordinates for the airplane x = [0 1 2 2 0 -2 -2 -1 0 0 0 0]; y = [0 0 0 1 1 1 1 1 2 2 3 3]; z = [0 0 0 0...

1 year 前 | 0