User Portlet 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...
Hey everyone, In a practica I collected Data from an oscilloscope. This data is saved in .csv files (an example is in the attachment). Now I have to plot and fit this data. The main problem is, that I don't even get the data into the right...
Hey, I've already made a similar discussion, but since I do not get any answers there, I decided to start a new one with more details. Please apologize that. I have the function El[k_ , l_, d_] := k * l / (0.25*d^2*Pi) and defined the...
Hey Guys! I've got the following problem. I have the function f[a_,b_,c_]=a+b/c Now I'd like to set a new function g[a_,b_,c_]=D[f[a_,b_,c_],a_] So the plan would be to have a new function which I can use to compute g for...