
Anthony Sirico
Statistics
RANK
156.969
of 258.127
REPUTATION
0
CONTRIBUTIONS
14 Questions
2 Answers
ANSWER ACCEPTANCE
42.86%
VOTES RECEIVED
0
RANK
of 17.787
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Question
How to use a function within optiproblem?
My minimization function is: pi = x(1)+x(2)-rho*min(0,x(1)^2+x(2)^2 how can i use this equation in optimproblem? prob = optim...
6 meses ago | 0 answers | 0
0
answersQuestion
Optimization problem with lower and upper bounded constraints
maximize:x0.063x4x7 −5.04x1 −0.035x2 −10x3 −3.36x5 subject to: x5 = 1.22x4 −x1 x6 = (98000 x3x4)/(x9 + 1000x3) x8 = (x2 + x5)...
6 meses ago | 1 answer | 0
1
answerQuestion
Live Editor output fractions to decimals
Is there a way in the live editor to change the output from fractions to decimals?
8 meses ago | 1 answer | 0
1
answerState Space with Disturbance Matrix
You cannot use the ss function symbolically.
alrededor de 1 año ago | 0
Question
plot a function that has a variable that changes with time
The function has a variable ap that changes at t >= 100s. How do I plot that? close all; clear; clc tspan = [0 150]; x0 = [1]...
alrededor de 1 año ago | 1 answer | 0
1
answerQuestion
Call a function with multiple nonlinear eqns with ODE45
I created a function with multiple nonlinear equations, and inside that function i call on another function that uses a time par...
alrededor de 1 año ago | 1 answer | 0
1
answerQuestion
Finding critical/equilibrium Points of a nonlinear System
I'm given the following nonlinear equations: Dx1 = @(x1,x2) (x1-1).*(x1+x2); Dx2 = @(x1,x2) x2 - x1.^2; What would be the bes...
alrededor de 1 año ago | 1 answer | 0
1
answerQuestion
Using subs in a matrix of equations
If i have a matrix of eqns, how can i sub in certain letter values now. I am using a live script where the first section creates...
alrededor de 1 año ago | 1 answer | 0
1
answerQuestion
Error using DynamicSystem/lsim
clear; clc; close all; A = [1 0 0 0; 0 -1 0 0; 0 0 -2 0; 0 0 0 -3]; B = [1 0; -1 1; 0 -1; 1 -1]; C = eye(4); D = 0; X0 = ...
más de 1 año ago | 1 answer | 0
1
answerState Space in lsim keeps returning 'Matrix dimensions must agree'
t has to be 1x4.
más de 1 año ago | 0
| accepted
Question
State Space in lsim keeps returning 'Matrix dimensions must agree'
A = [1 0 0 0; 0 -1 0 0; 0 0 -2 0; 0 0 0 -3]; B = [1 0; -1 1; 0 -1; 1 -1]; C = eye(4); D = 0; X0 = [-2; -1; 1; 2]; EvA = eig...
más de 1 año ago | 1 answer | 0
1
answerQuestion
simulate State Space system with lsim
A = [0 1 0 0; 0 0 1 0; 0 0 0 1; -2 -5 -7 -2]; B = [0; 0; 0; 1]; C = [1 3 0 0]; D = 0; t = 10; sys = ss(A,B,C,D); x0 ...
más de 1 año ago | 1 answer | 0
1
answerQuestion
SS2TF Error
sysm s R1 R2 C1 C2 A = [-(R1+R2)/(C1*R1*R2) 1/(C1*R2); 1/(C2*R2) -1/(C2*R2)]; B = [1/(C1*R1); 0]; C = [0 1]; D = 0; [n,d]...
más de 1 año ago | 2 answers | 0
2
answersQuestion
Local Function not being Entered
I am trying to create a recursive algorithm, with a local function. But when i test the alg, the initial input variables don't s...
más de 1 año ago | 1 answer | 0
1
answerQuestion
Calling python in MATLAB
In the below code, I have a Depth First Search with the pseudocode and the python code. My first question is how can I call this...
más de 1 año ago | 1 answer | 0
1
answerQuestion
Creation of edge set for a specific perfect matching number
N = input('N='); %Number of vertices J = 1:2:N-1 %odd numbers to N-1 P = [1, cumprod(J)] %Double Factorial V = 1:1:N %availab...
más de 1 año ago | 0 answers | 0
0
answersSolved
Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...
más de 1 año ago
Solved
Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...
más de 1 año ago
Solved
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 ...
más de 1 año ago
Solved
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...
casi 2 años ago
Solved
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:...
casi 2 años ago