Risposto
piloting log in y cordinate
Hi, try: format shortG kxx = 2.0e4; kyy = 8.8e4; kxy = 1.0e3; kyx = 1.5e3; cxx = 1.0 ; cyy = 1.0; cxy = 1.0e-1; cyx = 1....

oltre 7 anni fa | 0

| accettato

Risposto
How do I use ga correctly? fitness function
Hi, the line where ga is called [d endPop trace]=ga([],bounds(:,1),bounds(:,2),linOptFcn,IdentParams,[70 -1],'maxGenTerm',opt...

oltre 7 anni fa | 0

Risposto
help how can I use the PSO algorithme for the case of a matrix ?!
Hi, you can use the reshape function and take advantage of the linear indexing in Matlab. This will allow to work with matrices...

oltre 7 anni fa | 0

Risposto
Why the seond arugment in the command jacobian is not a vector of variables?
Hi, you declare b1...b3 as symbolic functions of t - not as symbolic variables. Thats why it doesnt work. Here is an example: ...

oltre 7 anni fa | 0

| accettato

Risposto
Vibration Analysis of a gas turbine
Hi, there are some example in the documentation regarding Vibration analysis: <https://de.mathworks.com/help/signal/exampl...

oltre 7 anni fa | 0

Risposto
How to find a polynomial of degree 2 that fits the given data with minimal approximation error? and then sketch discrete points and the graph of the polynomial
Hi, <https://de.mathworks.com/help/matlab/ref/polyfit.html polyfit> does the job: [p,S,mu] = polyfit(x,y,n) in your c...

oltre 7 anni fa | 0

Risposto
Failure in initial user-supplied objective function evaluation. FSOLVE cannot continue
Hi, this runs - not sure if it is really efficient, but it works: x0=[1,1,1,1,1]; fsolve(@F,x0) function m=F(x) syms y1 ...

oltre 7 anni fa | 0

| accettato

Risposto
help in solving an error
Hi, try: % Solving the 2-D Poisson equation by the Finite Difference ...Method % Numerical scheme used is a second order ce...

oltre 7 anni fa | 0

| accettato

Risposto
SOLVING LARGE SYSTEM OF EQUATIONS
Hi, try: a = sym('a',[1 15]); syms r p1 = poly2sym(a,r); diff = sym('diff'); eq = sym('eq'); fprintf('\n polynomial: %s\n...

oltre 7 anni fa | 0

| accettato

Risposto
where i can find video tutorials for GFDM for free?
You might be interested in this: <https://www.mathworks.com/videos/5gltewlan-waveform-generation-simulation-measurement-and-ov...

oltre 7 anni fa | 0

Risposto
Is there a way to combine number of matrices into one?
Hi, this solution is evil - since it uses eval: A = whos; A = {A.name}; B = string(ones(1,2*numel(A)-1)); B(2:2:end) = ","...

oltre 7 anni fa | 0

Risposto
Why is plot(x,y=0) not giving a line at y=0?
Hi, no need for this - since you are using R2018b you can take advantage of the yline function: x=0:0.01:10*pi; plot(x,2*sin(...

oltre 7 anni fa | 3

Risposto
How do i find the intersection between two curves?
Hi, usually this can be aproximated with quadratic functions - so you can use polyfit and polyval to calculate functionsthe de...

oltre 7 anni fa | 1

Risposto
How to plot the function y=sin(t)/t for -4*pi<x<4*pi?
Hi, at least two ways possible: Symbolic: syms t fplot(sin(t)/t,[-4*pi, 4*pi]) Numeric: t = linspace(-4*pi,4*pi); y = sin...

oltre 7 anni fa | 1

Risposto
Daily Return plot without interpolating lines
Hi, try: plot(returns) Best regards Stephan

oltre 7 anni fa | 0

Risposto
How can I store the value at each iteration of a genetic algorithm?
Hi, you coultd try this way: [x,fval,vals] = solve_problem function [x,fval,vals] = solve_problem ObjFcn = @myFitness; ...

oltre 7 anni fa | 3

| accettato

Risposto
Detect isolated nodes from tree graph mathematically through incidence matrix or adjacency matrix or any other mathematical method?
Hi, Matlab has his own graph functions. Learn how to define a graph object in Matlab, will help you saving a lot of time for ...

oltre 7 anni fa | 0

| accettato

Risposto
hi, how to import data from an Excel file
doc xlsread

oltre 7 anni fa | 0

Risposto
plotting a series of lines with specified colours
Hi, try: clf clc clear all close all % DATA Depth= [0 2 4 6 8 12 16 20 24 28 30 32 36 40]; % P-waves vp_upt= [3.27 5....

oltre 7 anni fa | 0

| accettato

Risposto
How to find the gradient of a function in spherical coordinates system ?
Hi, take advantage of the gradient function: syms x y z A = x^2*y+x*y*z res = gradient(A,[x y z]) results in: res = 2...

oltre 7 anni fa | 1

Risposto
the simscape of mass-spring-damping system can't get the ideal result
Hi, did you notice that you can accept and/or vote for useful answers? You have a asked a bunch of questions ang got some answe...

oltre 7 anni fa | 0

| accettato

Risposto
Reshaping 2x52 array into 1 special row
A = [1 2; 3 4; 5 6; 7 8] B = reshape(A',1,[]) gives: A = 1 2 3 4 5 6 7 8 B = ...

oltre 7 anni fa | 1

Risposto
How to get a function to accept a vector as input?
Hi, no if-else is needed, when using logical indexing: function [x] = classproj(W, k1, k2, d) x(W.*(1/k1)<d) = W(W.*(1/...

oltre 7 anni fa | 2

| accettato

Risposto
data from first line to two column
A=[1.4282E-01, 5.0537E+00, 1.2573E-01, 5.0537E+00, 1.8311E-02, 5.0513E+00]; B=reshape(A,2,[])'

oltre 7 anni fa | 0

| accettato

Risposto
difference between next two numbers
Hi, you may want to use the diff function. Best regards Stephan

oltre 7 anni fa | 2

Risposto
Hold on function in plot
remove: figure

oltre 7 anni fa | 0

Risposto
Has Matlab changed the random number generators used in the parallel toolbox in the latest 2019a distribution?
Hi, in the release notes you find the following section: Default random number generator changed for parallel contexts Beha...

oltre 7 anni fa | 2

Risposto
why my adaptive RK4 code cannot be as efficient as ode45?
Hi, have a look at this and the related sites: < <https://de.mathworks.com/help/matlab/matlab_prog/techniques-for-improvin...

oltre 7 anni fa | 0

Risposto
Strange behavior of dsolve
This workaround works in R2019a: clear all close all clc syms g r s K P0 P(t) assume(g==s) eq1 = simplify(dsolve(diff(...

oltre 7 anni fa | 1

| accettato

Risposto
Generating artificial (synthetic) time series for spectral analysis
See this example: https://de.mathworks.com/help/matlab/ref/fft.html?searchHighlight=fft&s_tid=doc_srchtitle#buuutyt-9 Best r...

oltre 7 anni fa | 0

Carica altro