Piotr Balik
Followers: 0 Following: 0
Statistics
All
RANK
5,862
of 295,527
REPUTATION
8
CONTRIBUTIONS
0 Questions
7 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
of 20,242
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Answered
Solving and plotting 2nd order ODE
This is constant, whose numerical value is depending on initial conditions. You can either specify it directly, per Solve syste...
Solving and plotting 2nd order ODE
This is constant, whose numerical value is depending on initial conditions. You can either specify it directly, per Solve syste...
1 year ago | 1
Answered
How do I use fscanf to read correctly?
Fscanf tries to read whole file at once, but does output it along rows, hence your problem occurs. You could try other maneuvers...
How do I use fscanf to read correctly?
Fscanf tries to read whole file at once, but does output it along rows, hence your problem occurs. You could try other maneuvers...
3 years ago | 0
Answered
ode45 is not generating the proper graph for this 1st order diff. eqn.
It is working fine as far as I've tested it: clear,close all,clc hw0p4func = @(t,x) (5*x)+3; initial = [0 0]; time = [0 ...
ode45 is not generating the proper graph for this 1st order diff. eqn.
It is working fine as far as I've tested it: clear,close all,clc hw0p4func = @(t,x) (5*x)+3; initial = [0 0]; time = [0 ...
3 years ago | 0
| accepted
Answered
Solve system of differntial equation with one variable
One easy way to solve ODE's is using ode45 solver. Define your derivative function in separate file, just as in your question: ...
Solve system of differntial equation with one variable
One easy way to solve ODE's is using ode45 solver. Define your derivative function in separate file, just as in your question: ...
4 years ago | 0
Answered
GPU code to numerically integrate parameterized function
I tried to do it, however arrayfun does not allow to insert custom functions: radianceGpu = arrayfun( @(lower,upper) integral(@...
GPU code to numerically integrate parameterized function
I tried to do it, however arrayfun does not allow to insert custom functions: radianceGpu = arrayfun( @(lower,upper) integral(@...
4 years ago | 0
Answered
How can I specify the file path for csvwrite to write a file to?
You can always use hard way and do: >> cd C:/'Program Files'/... >> csvwrite('file.dat',M); Because csvwrite documentat...
How can I specify the file path for csvwrite to write a file to?
You can always use hard way and do: >> cd C:/'Program Files'/... >> csvwrite('file.dat',M); Because csvwrite documentat...
6 years ago | 0
Answered
Using 'subs' in parallel for more than one equation
Repmat is one of solutions: E = subs(E,repmat([x1 y1],5,1),repmat([x2 y2],5,1)) Where 5,1 are 5-row 1-column copies of a...
Using 'subs' in parallel for more than one equation
Repmat is one of solutions: E = subs(E,repmat([x1 y1],5,1),repmat([x2 y2],5,1)) Where 5,1 are 5-row 1-column copies of a...
6 years ago | 1