Community Profile

photo

Sergey Kasyanov


Saints Petersburg Politechnical University

Last seen: etwa ein Jahr vor Aktiv seit 2017

Followers: 0   Following: 0

Kontakt

Statistiken

All
  • Knowledgeable Level 3
  • Thankful Level 3
  • Community Group Solver
  • Commenter
  • First Review
  • GitHub Submissions Level 1
  • First Submission
  • 3 Month Streak
  • Matrix Manipulation I Master
  • Knowledgeable Level 2
  • First Answer
  • Speed Demon

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
how to get the state-space representation from the SimMechanic model?
Hello! Try to use linmode.

mehr als ein Jahr vor | 0

Beantwortet
Optimisation problem in matlab
Hello! Try that: % tune only next 2 lines L = 5;% steps in ladder Z_max = 1e2;% max Z for one R or Xl % goal Z(w) % w0 -...

fast 3 Jahre vor | 0

Beantwortet
Detecting missing data, tangent = 0, for given data.
Hello! The approach is very simple: get array with 1 when Y = 0 and 0 otherwise, then detect when 0 changes to 1 and 1 changes ...

fast 3 Jahre vor | 0

Beantwortet
plot arc that pass through a particular point
Hello! The simplest way is: figure; hold on; for i = 1 : size(XX,2) [~, n] = max(XX(:,i)); plot3(XX(:,i), YY(:,i) -...

fast 3 Jahre vor | 1

| akzeptiert

Beantwortet
How to get the function after solving the differential equation using Eulers method?
Hello! A = [1, -1 -1, 1]; x0 = [1 2]; dx = [0 0]; time_step = 0.1; time = 0 : time_step : 10; x = [x0,...

fast 3 Jahre vor | 0

| akzeptiert

Frage


Symbolic matrices multipleid incorrectly
Hello! I have matrix equation: When I try to find X I get incorrect result: Check does not pass: I attach a .mat fil...

fast 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Replacing matrix n column values
Hello, There are some no pretty but working solutions, n = [70, 80]; %A is MyMatrix %1 A(A(:).' < 0 &... (1:numel(A)) ...

fast 3 Jahre vor | 0

Beantwortet
How to get the symbolic determinant of a big matrix 13x13 size
Hello! Try to use my function GaussElimination: detM = prod(diag(GaussElimination(M, ''))); I test it. It works but I'm not s...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
how to generate permutations of N numbers in K positions
Hello! Use nchoosek function with combination of perms function. That solution is slow but does not require any side files. re...

etwa 3 Jahre vor | 0

Beantwortet
I want the right coding for ploting a horizontal line with sin wave
Hello! hold on plot([x1,x2], [y,y]) Line starts in [x1, y] point and ends in [x2, y] point.

etwa 3 Jahre vor | 0

Beantwortet
why do i receive this error
Hello! You don't define f in fn function. Are you want to return f = [fy, fy2]? In that case: function f = fn( x , yic ) dy ...

etwa 3 Jahre vor | 1

Beantwortet
If condition is met, find next instance of a certain value.
Hello, If you have array with values that you need to find you can use that code: values_to_find = [226 226 225 221 226 226 2 ...

etwa 3 Jahre vor | 0

Beantwortet
Can anyone help me solve this problem using Newton's Method?
Hello, try that i = 1; V0 = [1;0];%[x0;y0] V = V0 + 1; while max(abs(V0 - V)) > 1e-10 && i < 1e2 V = V0; J = [3*...

etwa 3 Jahre vor | 0

Beantwortet
Double checking a for loop
Hello, sum(temp/intchl) -> sum(temp)/intchl means that you divide sum of all values by sum of mean values. Lets write it in det...

etwa 3 Jahre vor | 0

Beantwortet
How to index for saving an output of a for loop for each loop?
Hello, try that I = 0.1:0.1:0.7; Saved = zeros(4,length(I)); for i = 1:length(I) 'Calculating somestuff here' 'Use...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
Signal generator from .m file to simulink
Hello, you can use From Workspace block with [t', q_di'] as Data parameter.

etwa 3 Jahre vor | 0

| akzeptiert

Frage


subsref works as not expected
Hello! Let's create random cell array. test = {1,2,3,4}; And try to evaluate simple code res_1 = ones(subsref(test, substruc...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Check that point doesnt lay on line in Simulink block diagram
Hello! I want to connect some block programatically. The simplest way for that is to add_line by points but when i add line by ...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Problems with the legend function.
Hello! The simplest way is to define 'DisplayName' parameter for curves. For example: plot(-7.000,f(-7.000),'sq','MarkerSize',...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
A and B must be floating-point scalars.
Hello, You need to replace i = integral (fun, x, 0, t); to one of variants below: If you want to integrate in x range (from x(...

etwa 4 Jahre vor | 0

| akzeptiert

Frage


Can I mark block as 'algebraic loop breaker'?
Hello, I create block which implement time shift in signal for some steps but Simulink decides that there is algebraic loop wit...

etwa 4 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Insert number in polynomial
Hello, You need to replace f= @(x)p; by f = symfun(p,x);.

etwa 4 Jahre vor | 0

Frage


Using complex structure in simulink constant block
Hello, I know that there is way to pass structure to simulink model as bus object but what should I do if i need to pass comple...

etwa 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Force output for function with no output
Hello! I am working with function handles and get error because function does not return anything. Can I force any function to ...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Run VBA code in MS Office through COM
Hello, I need to take some data from program through COM but that program does not working with Matlab correctly. However tha...

fast 5 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
How i can call matlab basic function if that name is accotiated with couple of functions?
The simplest way to do that is use that code: varargout = builtin('diff',varargin{:}); Also you can looking for somethin...

mehr als 5 Jahre vor | 0

| akzeptiert

Frage


How i can call matlab basic function if that name is accotiated with couple of functions?
Hello, I need to call function |diff| (differences between array elements) for array of symbolic variable but matlab is using...

mehr als 5 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
How to solve det(s^2*M+s*C(s)+K)=0 for s as fast as posible
You can try to use that code from <https://www.mathworks.com/matlabcentral/fileexchange/67052-matlab-scripts there>: A=Ga...

fast 6 Jahre vor | 0

Beantwortet
Help reducing memory usage during large matrix multiplication
I think that problem can be solved by the manual multiplication of matrices. %note: V2=(V2-I*C) is the same V2(172)=V2(172)...

fast 6 Jahre vor | 0

Beantwortet
How I can fix this "Signal Dimension" error message ?
You may use |Simulink/Signal Attributes/Signal Specification block|. Specify number of dimensions like that is shown on the pict...

fast 6 Jahre vor | 1

Mehr laden