Beantwortet
Measure performance of 2 programmes
Hi, i suggest to use this: <https://de.mathworks.com/help/matlab/matlab_prog/profiling-for-improving-performance.html> ...

fast 8 Jahre vor | 0

Beantwortet
Under Windows 10 Pro and Matlab 2017b, Matlab symbolic tool 8.0 hangs up. Could anyone help me?
Hi, try to update your matlab: <https://de.mathworks.com/matlabcentral/answers/404882-how-can-i-fix-this-freezing-problem-...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
plot the electrical power of a motor having for a time t=20s the values of u(ur,us,ut) and i(ir,is,it))
Hi, this is an example which should work for your purpose: % some values for U(t) and I(t) --> i take random values for ...

fast 8 Jahre vor | 0

Beantwortet
The exact solution to a partial differential equation
Hi, this works by using the <https://de.mathworks.com/products/symbolic.html symbolic math toolbox> : % define symbolic ...

fast 8 Jahre vor | 1

| akzeptiert

Beantwortet
How to solve these two equations for 'tau' and 'b'? All the other symbols are constants. Please help??
Hi, i used the <https://de.mathworks.com/help/symbolic/isolate.html |isolate|> function instead of <https://de.mathworks.com/...

fast 8 Jahre vor | 2

| akzeptiert

Beantwortet
Exact solution of Boundary-Value Problem of second order ordinary differential Equation
Hi, i can not help you with an exact (analytical) solution, but here is a numeric solution: syms T(x) eqn = diff(T,...

fast 8 Jahre vor | 2

Beantwortet
How to set an assumption on a symbolic variable in a symbolic expression?
Hi, you can use the <https://de.mathworks.com/help/symbolic/assume.html |assume|> function for this purpose. Note the sec...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
I have a time table with 10 columns and I want to apply same filter to multiple columns.
Hi, this is nearly the same question as you had some weeks before: <https://de.mathworks.com/matlabcentral/answers/409678-...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
how can i merge different codes in the main function?
Hi, you can insert as many functions as needed at the *end* (behind the code section) of your main script: some code in ...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
how to find out inverse of matrix?
Hi, syms m n T=[1 0 0 0 0 0;... 0 m^2 n^2 m*n 0 0;... 0 n^2 m^2 -m*n 0 0;... 0 -2*m*n 2*m*n m^2-n^2...

fast 8 Jahre vor | 2

| akzeptiert

Beantwortet
how can I integrate this function (1/(1+x.^2)) in matlab
Hi, use <https://de.mathworks.com/help/matlab/ref/integral.html |integral|> function for this: fun = @(x) 1./(1+x.^2) s...

fast 8 Jahre vor | 0

Beantwortet
FMINUNC cannot continue...variable missing , although variable was included to be estimated in sub-function
Hi, you use *v* as an input to your *neglogl* function. There should be at least one line in your code that associates v wi...

fast 8 Jahre vor | 1

Beantwortet
petrosian fractal entropy estimation
Hi, you can use a function handle to do this: PFD = @(N,M) log10(N)/ (log10(N) + log10(N/(N + 0.4*M))) To calculate v...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
I need help finding critical values of my function
Hi, use <https://de.mathworks.com/help/optim/ug/fsolve.html?s_tid=doc_ta |fsolve|> on the derivates of your function. Then gi...

fast 8 Jahre vor | 0

Beantwortet
how can i install neural network toolbox?
Hi, assuming you have a license for this toolbox, you can follow this: <https://de.mathworks.com/matlabcentral/answers/101...

fast 8 Jahre vor | 0

Beantwortet
Having problems solving for critical values (Multi variable function)
Hi, my machine also doesnt stop being busy, when trying to solve this problem symbollically, so here is an numeric approach: ...

fast 8 Jahre vor | 0

Beantwortet
Error with fmincon- too many input arguments
Hi, you want to use <https://de.mathworks.com/help/optim/ug/fmincon.html |fmincon|> - which accepts the inputs: x = ...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
Solving multiple symbolic equations to get (X/Z)
Hi, i guess you want this: syms X Y Z a b c d eqn(1) = X == a * Y + b * Z; eqn(2) = Y == c * X + d * Z; sol = s...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
Integrate acceleration data o get velocity and travel
Hi, bring your values into a .mat-file like the example here at the answer attached: >> acc_values acc_values = ...

fast 8 Jahre vor | 0

Beantwortet
How to download missing functions?
Follow this: <https://de.mathworks.com/matlabcentral/answers/101885-how-do-i-install-additional-toolboxes-into-an-existing-in...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
lsqcurvefit question (Function value and YDATA sizes are not equal.)
Hi, Use elementwise operations to declare your function: xdata=[1,5,10,20,50]; ydata=[0.3, 1.6, 2.8, 4.6, 7.6]; ...

fast 8 Jahre vor | 1

| akzeptiert

Beantwortet
Rewrite a long symbolic fraction with fraction bars so it is more compact
Hi, you can use: pretty to make it a bit easier reading the equations. But i would suggest to open a new _Live Sc...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
Where can I download R2008a?
Hi, use this link: <https://de.mathworks.com/downloads/web_downloads/select_platform?dl_action=choose_products&tab=f> t...

fast 8 Jahre vor | 0

Beantwortet
Referencing Arbitrary Functions from other Script Files to Solve System of Equations
Hi, This looks like your script bfield is missing a function [what ever comes out] = bfield (whatever goes in...

fast 8 Jahre vor | 0

Beantwortet
How to solve a equation that appears z2
Hi, to get numeric solution use: vpasolve(eqn,Sig) after assigning values to the other variables. Best regards ...

fast 8 Jahre vor | 1

Beantwortet
accessing data from a struct
Hi, A = R.X assigns the Matrix saved in the field X of the struct R to A. % define empty struct R = struct(...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
Genetic Algorithm : Lower and Upper Bounds
Hi, the handling of bounds in the case of the use of ga is very well described here: <https://de.mathworks.com/help/gads/c...

fast 8 Jahre vor | 1

| akzeptiert

Beantwortet
bar chart with hold on
Hi, x = [9,10,11,12,13,14]; x1 = [1,2,3,4,5,6]; y = [2,4,5,6,7,8]; y1 = [3,2,4,5,6,9]; h = bar([x x1],[y y1]);...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
Plotting the left and right side of a tricky equation?
Hi, this works also on R2018a: <</matlabcentral/answers/uploaded_files/125793/fplot_test.PNG>> Try the following: ...

fast 8 Jahre vor | 0

| akzeptiert

Mehr laden