Gianpietro Battocletti
Delft University of Technology
Followers: 0 Following: 0
PhD Student at TU Delft
Programming Languages:
Python
Spoken Languages:
Italian
Python
Spoken Languages:
Italian
Feeds
提问
Setting path for CAD parts in Simscape Multibody
I am creating a Simscape project to simulate a 3D model I created with Autodesk Inventor 2021 (Build 250183000, 183). I succesfu...
1 year 前 | 1 个回答 | 0
1
个回答已解决
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
2 years 前
已解决
Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...
2 years 前
已解决
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
2 years 前
已解决
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...
2 years 前
已解决
Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.
2 years 前
已解决
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
2 years 前
提问
Is it possible to use an interpreter in UIdropdown items names?
Hi, I am designing an app with the App Designer. I want to add a drop down menu to choose the size of a capacitor. The menu ite...
3 years 前 | 2 个回答 | 1
2
个回答已解决
The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...
3 years 前
已解决
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
3 years 前
提问
Bode plot of butter filter's transfer function has wrong Module axis scale
I am tryng to create a second order butterworth lowpass filter and to plot its transfer function on a Bode plot. The problem...
7 years 前 | 1 个回答 | 0