Statistik
6 Fragen
0 Antworten
RANG
108.795
of 295.527
REPUTATION
0
BEITRÄGE
6 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
16.67%
ERHALTENE STIMMEN
0
RANG
of 20.242
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 154.057
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Displaying two different variable legends in the same figure
I am trying to display two legends in the same figure.Here, z1,z2 and z3 all are variables.Please suggest. Suppose z1=0.4, ...
mehr als 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
I want to find particular values of t at which y becomes 2 (by writing some commands in code itself). Can I extract such values of t as a vector?
clear clc; N=2000; % Number of time stpes dt=0.05; %Time step %Initialize y=zeros(N,1); t=zeros(N,1); ...
mehr als 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Applying higher value of input parameter for some interval input variable in ODE.
N=10; k=zeros(N,1); r=zeros(N,1); t=zeros(N,1); k1=1;k(1)=1;t(1)=0;dt=0.05; for i=2:N t(i)=t(i-1)+dt; ...
mehr als 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to find out particular value of t (j) at which y(j) is equal to some value lets say 4 (without looking graph) ? Thanks.
N=100; dt=0.05; k=2; t=zeros(N,1); y=zeros(N,1); y(1)=2;t(1)=0; for j=1:N-1 t(j+1)=t(j)+dt; y(...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
If y(j) is less than some number (say 3) then I want to use higher value of k (say 4) but in the range of 5th iteration before and after y becomes 3. For example in 40th iteration y becomes 3. I want to use k=7 from 35th to 45th iteration. Pls help.
N=100; dt=0.05; k=2; t=zeros(N,1); y=zeros(N,1); y(1)=2;t(1)=0; for j=1:N-1 t(j+1)=t(j)+dt; y(...
mehr als 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Problem with iterating loop again if output is less than some fixed value
Hi, I am trying to calculate theta1, theta2 and r using following equations. N=100; for j=2:N ...
mehr als 6 Jahre vor | 1 Antwort | 0