回答済み
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....

約7年 前 | 0

| 採用済み

回答済み
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...

約7年 前 | 0

回答済み
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...

約7年 前 | 0

回答済み
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: ...

約7年 前 | 0

| 採用済み

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

約7年 前 | 0

回答済み
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...

約7年 前 | 0

回答済み
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 ...

約7年 前 | 0

| 採用済み

回答済み
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...

約7年 前 | 0

| 採用済み

回答済み
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...

約7年 前 | 0

| 採用済み

回答済み
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...

約7年 前 | 0

回答済み
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) = ","...

約7年 前 | 0

回答済み
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(...

約7年 前 | 3

回答済み
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...

約7年 前 | 1

回答済み
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...

約7年 前 | 1

回答済み
Daily Return plot without interpolating lines
Hi, try: plot(returns) Best regards Stephan

約7年 前 | 0

回答済み
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; ...

約7年 前 | 3

| 採用済み

回答済み
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 ...

約7年 前 | 0

| 採用済み

回答済み
hi, how to import data from an Excel file
doc xlsread

約7年 前 | 0

回答済み
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....

約7年 前 | 0

| 採用済み

回答済み
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...

約7年 前 | 1

回答済み
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...

約7年 前 | 0

| 採用済み

回答済み
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 = ...

約7年 前 | 1

回答済み
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/...

約7年 前 | 2

| 採用済み

回答済み
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,[])'

約7年 前 | 0

| 採用済み

回答済み
difference between next two numbers
Hi, you may want to use the diff function. Best regards Stephan

約7年 前 | 2

回答済み
Hold on function in plot
remove: figure

約7年 前 | 0

回答済み
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...

約7年 前 | 2

回答済み
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...

約7年 前 | 0

回答済み
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(...

約7年 前 | 1

| 採用済み

回答済み
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...

約7年 前 | 0

さらに読み込む