Respondida
Tspan is not strictly increasing.
Since ode45 uses an automated stepwide control just define the start and the end of your tspan this way: tspan = [0 10]; This ...

más de 6 años hace | 0

| aceptada

Respondida
Subplot in ODE45
d = [0.20 0.30 0.50]; for ii = 1:numel(d) sol(ii)=ode45(@(t,C)b2(t,C,d(ii)),[0 2],[130 10 5]); t{:,ii}=sol(ii).x'; ...

más de 6 años hace | 1

| aceptada

Respondida
How to print greek letters like 'µ' in fprintf to file handle?
fileID = fopen('testFile.txt','w') fprintf(fileID,['16.0', char(181), 'm']); fclose(fileID)

más de 6 años hace | 0

| aceptada

Respondida
Differential Equation Problem using ode45
[W,Fa] = PBR_Isothermal; % plot results subplot(3,2,1) plot(W,Fa(:,1)) subplot(3,2,2) plot(W,Fa(:,2)) subplot(3,2,3) pl...

más de 6 años hace | 1

| aceptada

Respondida
problem in optimization by MATLAB using genetic algorithm
Change myFitness.m to: function y = myFitness(x) s = x(1) z = x(3) x = x(2) y = ...YOUR EQUATION HERE end also change thi...

más de 6 años hace | 0

| aceptada

Respondida
optimixation by genetic algorithm using MATLAB
Get rid of the square brackets - Matlab will interpret this as one input argument of a vectorized function. Therefore it throws ...

más de 6 años hace | 0

| aceptada

Respondida
Plotting points that pass through y for x,y,z coordinates
Data=[0.345 0.343 0.341 0.339 0.337 %sample x data -0.005 -0.002 -0.00069 0.0015 0.0034 %sample y data 0.284 0....

más de 6 años hace | 1

| aceptada

Respondida
Time-dependent parameter for ODE system
use interp1 to achieve this - an example of how to do this is here.

más de 6 años hace | 0

| aceptada

Respondida
plot a mathmatical function
https://de.mathworks.com/help/matlab/ref/fplot.html

más de 6 años hace | 0

Respondida
Intelligent symbolic variable substitution
syms f(x) z(x) fun = f == x^2 + 8*x + 16; % equals (x+4)^2 transform = z == (x+4)^2; subs(fun, rhs(fun), lhs(transform))...

más de 6 años hace | 0

Respondida
Use Splitapply to write multiple files
Here is a small example of how it could work: % some data to play with Gender = ['m' 'm' 'w' 'w' 'm' 'w']'; Age = randi(60,6,...

más de 6 años hace | 0

| aceptada

Respondida
Find column where one value is NaN
res = find(~isnan(a(1,:)) & isnan(a(2,:))==1)

más de 6 años hace | 0

| aceptada

Respondida
Solving 2 Trigonometric Equation with 2 Unknowns
You can solve the whole system numeric by using *|fsolve|*: [sol,res]=runfun function [sol,res] = runfun px=387.4162; py...

más de 6 años hace | 0

| aceptada

Respondida
Solving a differential equation
Hi there were some bugs in this code - see my comments V1=3; Gin=216; alpha=0.5; t1=6; V3=10; tau2=50; Eg=180; tau1=5; ...

más de 6 años hace | 0

| aceptada

Respondida
How to solve system of 2nd order differential equations using ode45
plot3(t,x(:,1),x(:,3))

más de 6 años hace | 0

| aceptada

Respondida
summing along 3rd dimension every 10 frames
If A is your matrix: B = sum(reshape(A,32,32,10,[]),3);

más de 6 años hace | 0

Respondida
wo kann ich das R2018b runter laden, eine Matlablizenz habe ich
<https://de.mathworks.com/downloads/web_downloads/select_release?mode=gwylf>

más de 6 años hace | 1

Respondida
Why does this for loop fail?
|vpasolve| may find more than one solution. Try to save your results in a cell array: ... Vrange = cell(1, length(Trange))...

más de 6 años hace | 0

| aceptada

Respondida
How to use fsolve with a variable parameter?
Define the values fot T21 that you want to calculate for. Then use a for loop and call your function inside the loop as often as...

más de 6 años hace | 2

| aceptada

Respondida
How to extract diagonal line data from image
The result for every line object contains an information about the angle of the line. This information can be used as input to <...

más de 6 años hace | 0

Respondida
logspace equivalent and sin(x) [solved]
x = 10.^(1:3) % x=logspace(1, 3, 3) result = sum(A>0.5) % Number of elements in A bigger than 0.5

más de 6 años hace | 1

| aceptada

Respondida
coding error ode45
If possible try to avoid global variables: %define parameters %x is the number of cancer cells x0 = 1000; % c2 is the number...

más de 6 años hace | 0

| aceptada

Respondida
Remove noise from screw image
Replace the medfilt2 by a gaussian blur using imgaussfilt: %% read image and find points that should lie on a straight line A ...

más de 6 años hace | 1

Respondida
Multiple output values on an if else loop
in every run of your loop you overwrite WeightF. Use indexing to avoid this: WeightF(i) = ... also using i for loop count is n...

más de 6 años hace | 0

Respondida
Detect orientation of screw image
Using this script lets you know which angle to rotate. Then use this information to rotate the image and check the orientation a...

más de 6 años hace | 2

| aceptada

Respondida
Create a matrix that stores rows that are not from a random sample
A way smarter is using the ismember function - here is an example - all you need ist the last line, the first two lines are just...

más de 6 años hace | 0

Respondida
how to Conversion transfer function to state space ...MIMO help me
<https://de.mathworks.com/help/control/ref/ss.html?s_tid=doc_ta#f4-373013 Convert Transfer Function to State-Space Model>

más de 6 años hace | 0

Respondida
Ode45 change of a value in the equations
Do 2 calls of ode45. The first from tspan=[0 365]. Then use the final result from this as initial condition for the second call ...

más de 6 años hace | 0

Respondida
how can i code energy balance eq in matlab
There is an analytical solution found by dsolve: syms T_Co(t) T_Ho(t) M_C M_H T_Ci T_Hi rho_C rho_H V_C V_H UA_i C_Pmc C_Pmh ...

más de 6 años hace | 1

| aceptada

Respondida
Reading file with pilcrow (paragraph) sign
This should help: >> A = '09.10.2019¶' A = '09.10.2019¶' >> A(end) = [] A = '09.10.2019' also maybe hel...

más de 6 años hace | 1

| aceptada

Cargar más