
Rafael Hernandez-Walls
My interest is everything related to numerical schemes applied to PDE and Oceanography, UABC.
Content Feed
답변 있음
matlab not plotting graph
You need one point in the equation of z h = [2,4,6,8,10]; x = 10.1; y = 2.5; z = (x * h.^2 - x - sqrt(y^2*h.^2 - y^2))./ (h....
matlab not plotting graph
You need one point in the equation of z h = [2,4,6,8,10]; x = 10.1; y = 2.5; z = (x * h.^2 - x - sqrt(y^2*h.^2 - y^2))./ (h....
대략 2년 전 | 0
답변 있음
how i can find the chessboard lines and draw on the main image with any solution
Maybe you can use the Radon Transform, like this link: https://www.mathworks.com/help/images/detect-lines-using-the-radon-trans...
how i can find the chessboard lines and draw on the main image with any solution
Maybe you can use the Radon Transform, like this link: https://www.mathworks.com/help/images/detect-lines-using-the-radon-trans...
대략 2년 전 | 0
답변 있음
how can I get y which correspond to x and then plot (x,y)??
Try this: x=linspace(-4,4); for r=1:length(x) y(r)=fzero(@(y)y.^3+0.2*exp(-1*x(r).^2)*y.^2-2.2039*y.^2+0.8155,1); end p...
how can I get y which correspond to x and then plot (x,y)??
Try this: x=linspace(-4,4); for r=1:length(x) y(r)=fzero(@(y)y.^3+0.2*exp(-1*x(r).^2)*y.^2-2.2039*y.^2+0.8155,1); end p...
2년 초과 전 | 0
답변 있음
How to read data from text file and store as it is with variables
Assuming you have a file with only following line (name of file= 'algo.txt'): phi1_32_1 = 1 You could then read the line with...
How to read data from text file and store as it is with variables
Assuming you have a file with only following line (name of file= 'algo.txt'): phi1_32_1 = 1 You could then read the line with...
2년 초과 전 | 0
답변 있음
numerical simulation of travelling wave of epidemic model
try this.... clear all; xl=0; xr=1; %domain[xl,xr] J=1000; % J: number of dividion for x dx=(x...
numerical simulation of travelling wave of epidemic model
try this.... clear all; xl=0; xr=1; %domain[xl,xr] J=1000; % J: number of dividion for x dx=(x...
2년 초과 전 | 0
답변 있음
Read a txt file
try this Dens1 = [A(:,1),9.11*A(:,2).^(1.326)]; fileID1=fopen('E1.txt','w'); % [n,~]=size(Dens1); for k=1:n b=fprintf(...
Read a txt file
try this Dens1 = [A(:,1),9.11*A(:,2).^(1.326)]; fileID1=fopen('E1.txt','w'); % [n,~]=size(Dens1); for k=1:n b=fprintf(...
2년 초과 전 | 0
답변 있음
How to display correlation coefficents on plot?
you can try something like this: x = [0 0.000009 0.000018 0.000028 0.000037 0.000046 0.000055 0.000065 0.000074 0.000083 0.0000...
How to display correlation coefficents on plot?
you can try something like this: x = [0 0.000009 0.000018 0.000028 0.000037 0.000046 0.000055 0.000065 0.000074 0.000083 0.0000...
2년 초과 전 | 0
답변 있음
extracting value from a matrix
I think it is better to put the variable X as a string and from there start. for example: X=['1000000000000000000000000000000...
extracting value from a matrix
I think it is better to put the variable X as a string and from there start. for example: X=['1000000000000000000000000000000...
2년 초과 전 | 0
| 수락됨
답변 있음
How to get Taylor polynomial for functions?
You can use a function that is in the MAThWORKS fileexchange (I put the link): str=input('Function? ','s'); %tray with: cos(x)...
How to get Taylor polynomial for functions?
You can use a function that is in the MAThWORKS fileexchange (I put the link): str=input('Function? ','s'); %tray with: cos(x)...
2년 초과 전 | 0
| 수락됨
답변 있음
Change the sign of a Vector over N intervals
Use something like this: Y=rand(1,20); d=[1:4,8:12,17:20]; Y(d)=-Y(d)
Change the sign of a Vector over N intervals
Use something like this: Y=rand(1,20); d=[1:4,8:12,17:20]; Y(d)=-Y(d)
2년 초과 전 | 0
답변 있음
For loop only outputting the final value.
Try using something like this: t=linspace(0,3*pi,100) t=linspace(0,3*pi,100); for k=1:length(t) y = q2(t(k)); val...
For loop only outputting the final value.
Try using something like this: t=linspace(0,3*pi,100) t=linspace(0,3*pi,100); for k=1:length(t) y = q2(t(k)); val...
2년 초과 전 | 0
답변 있음
Plotting log x and y
Why don't you treat like this: n = 30; x = 0.5; h(1) = 1; emin = 1; for i =1:n if i==1 h(1)=0.5; else ...
Plotting log x and y
Why don't you treat like this: n = 30; x = 0.5; h(1) = 1; emin = 1; for i =1:n if i==1 h(1)=0.5; else ...
2년 초과 전 | 0
답변 있음
How can i draw the graph of this two functions using matlab
when i have this like problem i use this code: t=linspace(0,2*pi,50); f=((t>0)&(t<=1)).*2+((t>1)&(t<=pi/2)).*0.5.*t.^2+((t>pi...
How can i draw the graph of this two functions using matlab
when i have this like problem i use this code: t=linspace(0,2*pi,50); f=((t>0)&(t<=1)).*2+((t>1)&(t<=pi/2)).*0.5.*t.^2+((t>pi...
거의 3년 전 | 0
답변 있음
Finding the length of square function
t2=t(find(diff(X)>0)); t1=t(find(diff(X)<0)); long_time=t2(2)-t1(2)
Finding the length of square function
t2=t(find(diff(X)>0)); t1=t(find(diff(X)<0)); long_time=t2(2)-t1(2)
거의 3년 전 | 0
답변 있음
How to create a sine wave with variable frequency - Simulink
something like this: (?) t=linspace(0,2*pi,100); f=rand(1,100); y=sin(f.*t); plot(t,y)
How to create a sine wave with variable frequency - Simulink
something like this: (?) t=linspace(0,2*pi,100); f=rand(1,100); y=sin(f.*t); plot(t,y)
거의 3년 전 | 0
답변 있음
Euler method returning error
maybe you need copy the function eulsys.m in your system. In this link you have a copy: http://macs.citadel.edu/chenm/344.dir/0...
Euler method returning error
maybe you need copy the function eulsys.m in your system. In this link you have a copy: http://macs.citadel.edu/chenm/344.dir/0...
거의 3년 전 | 0
답변 있음
how do i plot only certain part of cepstrum
KSSV ks suggests that you work with the index, here I show you an example of what KSSV mentions, x=linspace(0,10,100); y=x.^2;...
how do i plot only certain part of cepstrum
KSSV ks suggests that you work with the index, here I show you an example of what KSSV mentions, x=linspace(0,10,100); y=x.^2;...
거의 3년 전 | 0
| 수락됨
답변 있음
no data plots on graph (plot (x,y))
David is correct. Why don't you try something like that in your code... d(1) = 32000; H = 8000; Re = 6370000; %c2 = 0.5*exp(...
no data plots on graph (plot (x,y))
David is correct. Why don't you try something like that in your code... d(1) = 32000; H = 8000; Re = 6370000; %c2 = 0.5*exp(...
거의 3년 전 | 0
| 수락됨
답변 있음
Invalid syntax error with a simple code
tray this x = [-2 -1.5 -1 -0.5 0 0.5 1 1.5 2]; y = (x+x.*(sqrt(x+3))).*(1+2*(x.^(2)));
Invalid syntax error with a simple code
tray this x = [-2 -1.5 -1 -0.5 0 0.5 1 1.5 2]; y = (x+x.*(sqrt(x+3))).*(1+2*(x.^(2)));
거의 3년 전 | 0
| 수락됨
답변 있음
How can I obtain slope of a trend line calculated for a time serie
Maybe this is useful for you https://www.mathworks.com/help/matlab/ref/detrend.html
How can I obtain slope of a trend line calculated for a time serie
Maybe this is useful for you https://www.mathworks.com/help/matlab/ref/detrend.html
거의 3년 전 | 0
답변 있음
Why does my plot not appear?
Vmax = 354*10^(-6); Km = 1.5*10^(-3); S = .0000005:.0000005:.000030; v = Vmax*S./(Km + S); plot(S,v);
Why does my plot not appear?
Vmax = 354*10^(-6); Km = 1.5*10^(-3); S = .0000005:.0000005:.000030; v = Vmax*S./(Km + S); plot(S,v);
거의 3년 전 | 0
답변 있음
Multiple Iterations over a system of linear equations
I think the problem is where the plot function, maybe you need to put another command to plot in each iteration, something like ...
Multiple Iterations over a system of linear equations
I think the problem is where the plot function, maybe you need to put another command to plot in each iteration, something like ...
거의 3년 전 | 0
답변 있음
for loop and if-statement
This may help you Time=[0.5 1.51 2.6 3.65 4.71 6.8 7.9 9.1 10.3 11.1 12.3 15 16.2 17.3 18.5 19.6]; dife=diff(Time); heelstrik...
for loop and if-statement
This may help you Time=[0.5 1.51 2.6 3.65 4.71 6.8 7.9 9.1 10.3 11.1 12.3 15 16.2 17.3 18.5 19.6]; dife=diff(Time); heelstrik...
거의 3년 전 | 0
| 수락됨
답변 있음
"Z must be a matrix, not a scalar or vector." PLEASE HELP!
x1 = 1:.1:4; x2 = 1:.1:4; [X,Y] = meshgrid(x1,x2); Z= ps2func(X,Y); mesh(X,Y,Z) grid on hold on function [f]=ps2func(x...
"Z must be a matrix, not a scalar or vector." PLEASE HELP!
x1 = 1:.1:4; x2 = 1:.1:4; [X,Y] = meshgrid(x1,x2); Z= ps2func(X,Y); mesh(X,Y,Z) grid on hold on function [f]=ps2func(x...
거의 3년 전 | 1
답변 있음
Converting Euler's method calculation into matlab
tray this: % Initial conditions and setup Q=400; A=1200; alph=160; h = 0.5; % step size t = 0:0.5:10; % the range of t ...
Converting Euler's method calculation into matlab
tray this: % Initial conditions and setup Q=400; A=1200; alph=160; h = 0.5; % step size t = 0:0.5:10; % the range of t ...
거의 3년 전 | 1
| 수락됨
답변 있음
Lotka-Volterra Predatir Prey Model Code
using this: function [dPdt] = lotkavolterra(t,P) alpha = 1.5; % you have error here: you using alpa beta = 1; gamma = 3; de...
Lotka-Volterra Predatir Prey Model Code
using this: function [dPdt] = lotkavolterra(t,P) alpha = 1.5; % you have error here: you using alpa beta = 1; gamma = 3; de...
거의 3년 전 | 0
| 수락됨
답변 있음
¿Por qué mi código no corre?
Hola, Creo que tu condicion incial debe ser de solo dos elementos y no de tres. Intenta este programa principal, el cual llamará...
¿Por qué mi código no corre?
Hola, Creo que tu condicion incial debe ser de solo dos elementos y no de tres. Intenta este programa principal, el cual llamará...
대략 3년 전 | 0