Consider the following system in complex symbolic form:
% syms ix %// or % syms x %//? sys(ix) = ((10+(ix)))/((20+5(ix)+(10(ix))^2+(ix)^3))
Where
ix = imaginary part
Can MATLAB symbolically evaluate imag(sys(jx)) and real(sys(jx)) ?
imag(sys(jx))
real(sys(jx))
syms x sys(x) = ((10+1.*1i.*x))/(20+(5.*1i.*x)+((10.*1i.*x).^2))+((1.*1i.*x).^3); imaginaryPart = imag(sys);
where 1i used as opposed to i , as it should be more reliable according to the documentation.
1i
i
Source: https://habr.com/ru/post/1242441/More articles:Adding a plugin project to rake 3 - grailsSpring boot - return user object after login - springDoes the Interior.Color property invert colors? - excelDefine a const constructor in a class (ES6) - javascriptshow a specific user page in Telegram - cordovaWhy is this regular expression space in the last match? - regexhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1242443/ways-to-improve-for-loop-for-matrix-manipulations-depending-on-another-matrix&usg=ALkJrhh1UxPlrDX3Rxo8rqTQV1rjAxErFAReactive Extensions: Separating Input, Processing, and Concatenation - c #Can I send multiple messages to a single event using elm-html? - elmJAXB maven plugin does not generate classes - javaAll Articles