Pieter Hamming
Followers: 0 Following: 0
Statistics
RANK
4,925
of 295,527
REPUTATION
10
CONTRIBUTIONS
1 Question
6 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
1
RANK
of 20,242
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,057
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Assigning different color in legend
The |'r'| in |plot(xz,ys,'r')| means 'red', telling MATLAB you want this line to be plotted in red. If you instead use |plot(xz,...
6 years ago | 0
Several Issues with Van der waals function used to plot P against V
*Part one: problems with code in the current form* v=[v(1),v(2),.....v(i)] is incorrect syntax, as it is interpreted as ...
6 years ago | 1
how i can perform this for loop
Replace "return" by "continue". "Return" stops the whole file, "continue" sends it on to the next iteration in the for loop.
6 years ago | 0
| accepted
How can I plot spectral data from 2 different day to compare 2 variables?
Does this do what you need? If not, can you clarify the question? [d1 d2]=xlsread('data2days.xlsx'); col1=76; %first co...
6 years ago | 0
| accepted
How to improve the speed of computing trace in my code?
Presumably the trace calculation takes most time. Since you're only interested in the diagonals anyway, why not use <https://sta...
6 years ago | 0
Import Hours from .csv without colon
Lets say D is a column-array of your data: D=[30;100;1200;330]; All digits before the last 2 are hours, so lets extract t...
6 years ago | 0
Question
Improve fit quality for a custom function with near-perfect starting values
I'm trying to fit data with a relatively complicated custom function (combined logistic+linear function; combined effect of my d...
6 years ago | 1 answer | 0