User Portlet
| Discussions |
|---|
| Hello! I'm trying to Plot some data points with their x- and y-error. So lets say i have two datasets with their errors: x = {1, 2, 3}; y = {1, 4, 9}; xerror = {0.2, 0.2, 0.3}; yerror = {0.1, 0.4, 0.8}; Then I combine... |
| Hey guys, I'm currently evualting the experimental results from a digital oscilloscope. This is the code I'm using: SetDirectory[NotebookDirectory[]]; raw = Import["src/T0005.csv"]; plotData=Select[raw[[17;;]],Length[#]==5&]; ... |
| Hey guys, I have 24 notebooks (file1, file2, file3,...) and each one makes a lot of operations which leads in the end to 3 variables a,b and c. Now I have to use all this 24 a,b and c's to make more calculations in a new notebook file... |
| Wow. A big thanks to both of you, this is more helpful that I expected. You saved my weekend guys! :) |
| Thanks a lot, it works perfectly! Now I'm trying to understand what the hell you did there :D But I'm sure I'll understand it with a some hours of work so that I can solve problems like this in the future myself. |
| Hey, thanks for your answers, I read the articles and was able to solve a half of the actual problem, which is the following: I have the function El[k_ , l_, d_] := k * l / (0.25*d^2*Pi) and computed the gaussian variance formula ... |