Risposto
can someone help me to analyze this program? How does the flowchart look like?
Perhaps this will help: %radiasi benda hitam % constants h=6.626e-34; c=3e8; k=1.38066e-23; % range of values lambda ...

5 mesi fa | 0

Risposto
Error using surf (line 71) Data dimensions must agree
More like this? for it=1:2 for jt=1:3 zt(it,jt)=it+(jt-1); end end [x,y] = meshgrid(1:3,1:2); figure; surf(x...

5 mesi fa | 1

Risposto
How to find Basins of attraction for the Halley method?
Don'tforget the dot multiply: f = @(z) z.^3 +1; df = @(z) 3*z.^2; ddf=@(z) 6*z; % its roots r1 = -1; r2 = 1/2 + 1i*...

6 mesi fa | 0

| accettato

Risposto
"Invalid use of operator." doesn't go even after trying various solutions :(
Why nor just use Matlab's inbuilt cart2pol function?

6 mesi fa | 0

Risposto
Heat equation using Boundary condition
function statements of this form (i.e. functions eq1, initial and ba) need to go at the end of the script, not the start.

6 mesi fa | 0

Risposto
A for loop that will run until a specific mathematical value is found
You could try replacing the "for i = 2:10 " loop by something like nports = 1; while Q(i)<Qdesired nports = nports ...

7 mesi fa | 0

| accettato

Risposto
How to plot all figures in only one plot?
Here's one simple way: x=-pi:0.1:pi; c=-6:5; figure hold on for i=1:length(c) y=c(i)*x.^(2)+4*x+2; plot(x,y) end...

8 mesi fa | 0

| accettato

Risposto
Error in Hermite Polynomial
In line for j = 0:i-1 you have j starting at zero. Matlab's indices start at 1, so the following line should have X(j+1) not ...

8 mesi fa | 0

Risposto
Matlab code not computing
The use of square brackets in the scatter function is not the only problem! Are you looking for something like this? p=-1; z=...

9 mesi fa | 0

| accettato

Risposto
how to plot the path of circular beam oscillation welding?
Like this? A=1; f=50; vf=0.02; time = linspace(0,100,500); x0 = vf*time; theta = 2*pi*f*time; x=A*cos(theta)+x0; y=A*sin...

9 mesi fa | 0

Risposto
how to change the direction of the airfoil
Change contourf(real(J),imag(J),imag(f),v2); %%%%% fill(real(zair),imag(zair),'k') to contourf(-real(J),imag(J),imag(f),v2);...

10 mesi fa | 0

| accettato

Risposto
How to use 5 function coupled each other using ODE45? it is possible?
Better like this: MM0 = [10, 0, 0, 0, 0]; tspan = [0 100]; [t, MM] = ode15s(@mymode, tspan,MM0); M1 = MM(:,1); M2 = MM(:...

10 mesi fa | 0

| accettato

Risposto
convert a column matrix with many rows into multiple column of equal rows
Try the reshape function.

10 mesi fa | 0

Risposto
"Not enough Imput arguments" ERROR
You haven't included J as an input argument to function Feedback_Ven_STEP.

10 mesi fa | 0

| accettato

Risposto
Using polyfit in two arrays to detrend data.
polyfit just returns the coefficients of the polynomial. You need to use them in polyval to calculate data values.

10 mesi fa | 2

Risposto
Implicit solution using pdepe 1D advection diffusion reaction equation
I think you've overcomplicated the situation! Should be more like the following (which you should check very carefully, as I di...

10 mesi fa | 0

Risposto
I want to plot the vector field on F=x i+ j
Do you mean like this? [x,y] = meshgrid(-3:.15:3,-3:.15:3); Fx = x; Fy = ones(size(y)); %%%%%%%%%%% figure; quiver(x,y,Fx,F...

10 mesi fa | 0

| accettato

Risposto
i have two set of data for temperature measurements which vary depends on each other. the variation may be divided into three portions. how can we seperate these portions
Here's a possible way (assumes the data is already in the workspace): dT2 = gradient(T2); minval = min(dT2(Time<2.5)); ix = f...

10 mesi fa | 0

Risposto
How to surf very small values keeping the same ratio?
Multiply them all by 1e4.

10 mesi fa | 0

Risposto
whats preventing my code from generating the proper results
I don't know anythng about the physics of your scenario, but are you sure you are calculating NLOS_LOWER_BOUND correctly? The f...

10 mesi fa | 0

Risposto
Finding the optimal solution for a data with two variables
Here's a possible approach (I've used relative errors as the values of the two columns are an order of magnitude different): % ...

10 mesi fa | 0

| accettato

Risposto
Using loop to sum value of an array and summation
Here's one way: J=[1 2 3 4 5 6 1 2 3 4 5 6]; step = 3; ix = 1:step:numel(J); for i = 1:numel(ix) p(i) = sum(J(ix(i)...

10 mesi fa | 1

| accettato

Risposto
Solving a system of inequalities using an eigenfunction and if, else.
Your function needs to be more like this, for example. Set values of x outside the function, call the function with these value...

11 mesi fa | 0

| accettato

Risposto
Почему появилась ошибка?
Seems overcomplicated for a numerical solution! How about simply f = @(x) x - 5 - 1/3*cos(2*x+1) + 2*x./(2+x.^2); g = @(x) x ...

11 mesi fa | 0

Risposto
How to write 2D heat conduction exact solution for Inf n?
Your term sinh(n*pi*x/L) should be sin(n*pi*x/L). See the following code (which can be made more efficient!): L = 1; H = 2; ...

11 mesi fa | 1

| accettato

Risposto
Help with Riccati equation
You haven't defined B (in the function definition)

11 mesi fa | 0

Risposto
How to create a time function and make a line rotate at a certain angular speed?
Do you mean something like this? r2_length = 2; tend = 10; % s dt = 0.1; t = 0:dt:tend; omega = 1; % rad/s theta = omega*t...

11 mesi fa | 0

Risposto
Cannot get integral function to work for two limits
Try this %Enthalpy datum conditions (Kelvin) Ti=(25+273.15); %Input temperature (Kelvin) T1=(183+273.15); %Output tem...

11 mesi fa | 0

Risposto
I have some errors in executing the following code, can anyone help me please?
You have no initial guesses for y(5) and y(7). And what about y(6)?

11 mesi fa | 0

Carica altro