Ege Keskin
Followers: 0 Following: 0
Feeds
已回答
Convert digital value from analog input pin to pwm output
You might want to take a simple route and avoid programming your arduino anything other than the Arduino IDE. You are looking ...
Convert digital value from analog input pin to pwm output
You might want to take a simple route and avoid programming your arduino anything other than the Arduino IDE. You are looking ...
6 years 前 | 0
已回答
How to exit a while true loop after some time has elapsed
You can use something like; while %%YOUR CODE HERE if %no input from the user for 10 seconds (figure out how to ...
How to exit a while true loop after some time has elapsed
You can use something like; while %%YOUR CODE HERE if %no input from the user for 10 seconds (figure out how to ...
6 years 前 | 0
已回答
Thomas Algorithm: I want to know how to specify the boundary conditions of Thomas Algorithm.
Are you using this to solve a heat transfer problem? If so, the boundary conditions are usually constant because the integration...
Thomas Algorithm: I want to know how to specify the boundary conditions of Thomas Algorithm.
Are you using this to solve a heat transfer problem? If so, the boundary conditions are usually constant because the integration...
6 years 前 | 0
已回答
''TUNING OF PID CONTROLLER USING DIFFEENT TECHNIQUES''
You do not need to write a piece of code in order to tune the gains, espacially for the Ziegler-Nichols method. Just google how ...
''TUNING OF PID CONTROLLER USING DIFFEENT TECHNIQUES''
You do not need to write a piece of code in order to tune the gains, espacially for the Ziegler-Nichols method. Just google how ...
6 years 前 | 0
已回答
Temperature Control using PID via Simulink
You might achieve better results by directly using the PID block on simulink.
Temperature Control using PID via Simulink
You might achieve better results by directly using the PID block on simulink.
6 years 前 | 0
已回答
Plotting Multivariable function poltting
[X,Y] = meshgrid(1:.2:10); Z =(X*Y) / (X^2 + Y^2); surf(X,Y,Z) You should avoid including 0 w...
Plotting Multivariable function poltting
[X,Y] = meshgrid(1:.2:10); Z =(X*Y) / (X^2 + Y^2); surf(X,Y,Z) You should avoid including 0 w...
6 years 前 | 1
| 已接受
已回答
Install Arduino uno offline
You would have to have internet access no matter what in order to "download" the Arduino toolbox..
Install Arduino uno offline
You would have to have internet access no matter what in order to "download" the Arduino toolbox..
6 years 前 | 1
已回答
How to plot a 3D vector field
UPDATE: I have found a user made function that takes a 3d matrix and visualizes it. Which solved my problem instantly. The funct...
How to plot a 3D vector field
UPDATE: I have found a user made function that takes a 3d matrix and visualizes it. Which solved my problem instantly. The funct...
6 years 前 | 1
| 已接受
已回答
How to plot a 3D vector field
I still do not have my answer. All of the examples and sketches on the internet have 2 variables. for example z = x*y. However i...
How to plot a 3D vector field
I still do not have my answer. All of the examples and sketches on the internet have 2 variables. for example z = x*y. However i...
6 years 前 | 0
提问
How to plot a 3D vector field
Hello. I am trying to plot the magnetic flux density of a permanent magnet around its viscinity. the magnetic flux density at an...
6 years 前 | 3 个回答 | 0
3
个回答提问
How can I identify the powers and the coefficient of a semi-known 2 variable function?
I am currently trying to corralate Reynold's and Prundtl number to find the Nusselt number. The equation is Nu = C*Re^n*Pr^m , ...
6 years 前 | 1 个回答 | 0