Respondida
how can I plot the fourier series of this function by calculating the coeffcients and for different n?
Note that the function f you defined is even - thus it must be cos(n*x), not sin(n*x) that appears in the Fourier series. x = l...

casi 4 años hace | 0

| aceptada

Respondida
How can I define two function in function handle for GAMULTIOBJ?
Since the functions are that long, better keep them separated. But use func=@(x) [efficiency(x),LCCfunc(x)]; instead of func...

casi 4 años hace | 0

| aceptada

Respondida
Is my matlab code for the sinc signal below correct.
%************ Variable declaration****************** rng('default') t = -20:0.1:20; signal = zeros(1,length(t)); %for spped a...

casi 4 años hace | 1

| aceptada

Respondida
Help with 'fmincon' fucntion for optimsation
Your problem is linear. You might want to try "linprog" instead of "fmincon". m = 6; a =[.75,0.75,0.85,0.8]; x0 = [0,0,0,0]; ...

casi 4 años hace | 2

| aceptada

Respondida
System of Nonlinear Equations exceeds function evaluation limit
Substitute a = x(2)*cos(x(3)), b = x(2)*sin(x(3)), c= x(1)*cos(x(3)), d=x(1)*sin(x(3)) in your equations. You get an underde...

casi 4 años hace | 0

Respondida
How do you analytically solve PDE's in Matlab for example the 1-D Poisson Equation
Usually, PDEs cannot be solved analytically in MATLAB. Your "PDE" is a simple ODE with solution phi(x) = 1/2*x^2 + a*x + b with...

casi 4 años hace | 1

Respondida
how to plot this function?
f = @(x) abs(x)<=pi/2; x = linspace(-pi,pi,200); plot(x,f(x))

casi 4 años hace | 0

Respondida
how to derivate a polynomial with x , y and z terms
how polyder function would work in this case? Your function is not a polynomial ; thus it doesn't work. "polyder" works on vec...

casi 4 años hace | 0

Respondida
A question for orth
Can you get an integer vector for the orthonormal basis of range(A) (thus with length 1) ? Answer: No. Further, range(A) is not...

casi 4 años hace | 0

Respondida
How to modify built-in function tolerance for 'lsqcurvefit'?
FunctionTolerance and StepTolerance are the parameters in the options-structure you can play with.

casi 4 años hace | 1

| aceptada

Respondida
I need to multiply each element of a vector of five values by another vector 2000 values.
Transpose the theta vector.

casi 4 años hace | 0

| aceptada

Respondida
Hello Matlab! I would love to find a solution to this error
Something like this ? f = @(a,b) (cos(3.86*a)+cos(3.86*b)); g = @(a,b) (cos(1.93*a)*cos(1.93*b)); T = @(a,b)[2.86*sqrt(6)+2.5...

casi 4 años hace | 0

Respondida
How to use the SUM() function..?
Did you create a MATLAB function with name sum.m ? If yes, rename it.

casi 4 años hace | 0

Respondida
Count occurances on multidimensional matrix with multiple criteia on different dimnesions
A = zeros(3,4,2); A(:,:,1)=... [90 95 90 80 70 90 95 70 60 90 90 60]; A(:,:,2)=... [1 1 1 1 2 2 2 2 1 2 1 1]; occur...

casi 4 años hace | 0

Respondida
Prolate spheroid surface area
I calculated the surface area of a sphere of radius 1 which should be 4*pi. The below formula from WolframAlpha seems to work ...

casi 4 años hace | 0

Respondida
Solve system of equations with two unknowns (should be the smallest rational number possible)
Easy for a,b real: a = b = sqrt(k). More involved for a,b rational. For a,b real it can be solved as an optimization if you d...

casi 4 años hace | 0

Respondida
How to calculate the intersection point of lines on a loglog graph.
eprime=0.59; sigmaprime=277500; %Constants for Manson Coffin Equation b=-0.087; c=-0.58; %Young's Modulus E=30*10^6; ...

casi 4 años hace | 1

| aceptada

Respondida
i need to get my variable y to vary....as its a key variable for this entire system. i cant seem to find a way. would you help me in that regard...
In x0, set y to the value you want. In PBR, set dxdW = [dnNO_dW; dnH2_dW; dnN2_dW; dnH2O_dW; dnN2O_dW; dnO2_dW; 0.0; dT_dW]; ...

casi 4 años hace | 0

Respondida
Calculate the area and volume of revolution based on some data points
y = [0,38.161563,39.751307,40.878082,42.701189,44.524296,45.047229,45.990198,46.933167,46.785121,... 46.225562,41.318857,36...

casi 4 años hace | 2

| aceptada

Respondida
How to use "poissrnd" function?
lambda = 4 What is the unit of lambda ? Mean number of arrivals per minute ? And you want to get a random vector for arrivals...

casi 4 años hace | 0

Respondida
Store prime and non-prime numbers
x=[1:50]; x=x'; jj=0; %index for prime_num nn=1; %index for nonprime_num p=[]; np=[]; np(1) = 1; for i=2:length(x) i...

casi 4 años hace | 1

| aceptada

Respondida
Can someone explain to me how to code the Tangent line and Normal line
https://de.mathworks.com/matlabcentral/answers/1816450-can-someone-tell-me-how-will-i-be-able-to-remove-the-error-in-this-script...

casi 4 años hace | 0

| aceptada

Respondida
Extract values from one matrix and with iteration solve the system of linear equations
B = rand(3,3); A1 = 4; rhs = -A1*B(1,:).'; Mat = [-ones(3,1),B(2:3,:).']; sol = Mat\rhs; C1 = sol(1) A2 = sol(2) A3 = s...

casi 4 años hace | 0

Respondida
I get "vectors must be the same length". How come?
How do you want to plot a vector of length 302 against a vector of length 352 ? It's not possible. x1 = 0:0.1:5; x2 = 5:0.1:35...

casi 4 años hace | 0

Respondida
Is there any way to find the row with closest values in matrix with a given array values?
How do you define "closest" ? The Euclidean distance between array and rows of the matrix ? Then you can use mat1 = [1.0000 ...

casi 4 años hace | 0

| aceptada

Respondida
linear combination of vector and permutation
values = [-1 1]; %// data k = 3; %// data n = numel(values);...

casi 4 años hace | 1

| aceptada

Respondida
a simple calculation by each row
Take ^(1/eta) of both sides of the equations. You get linear equations in x. Solve them. See solution above.

casi 4 años hace | 1

| aceptada

Respondida
Does MATLAB have inverse tangent integral TI2(z)?
format long x = 0.5; Ti2 = 1i*( -dilog(1-1i*x) + 0.25*dilog(1+x.^2) ) Ti2_compare = integral(@(x)atan(x)./x,0,x)

casi 4 años hace | 0

Respondida
matlab not using the variable i give it in differential equation
syms k N t P(t) knum = 0.025; Nnum = 1000; sol = simplify(dsolve(diff(P,t)==k*P*(1-(P/N)), P(0)==200)) sol = subs(sol,[k N],...

casi 4 años hace | 0

Respondida
Failure in initial objective function evaluation. FSOLVE cannot continue.
fun = @root7d; x0 = [10,10]; x = fsolve(fun,x0) fun(x) function F = root7d(x) %parameters vp=100; kp=0.5; q=1;...

casi 4 años hace | 0

| aceptada

Cargar más