Statistics
RANK
4,976
of 257,609
REPUTATION
7
CONTRIBUTIONS
32 Questions
14 Answers
ANSWER ACCEPTANCE
56.25%
VOTES RECEIVED
5
RANK
4,658 of 17,749
REPUTATION
255
AVERAGE RATING
4.70
CONTRIBUTIONS
11 Files
DOWNLOADS
17
ALL TIME DOWNLOADS
2418
RANK
of 109,891
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
Content Feed
Submitted
ADQcommands
A class-type list of commands for communicating with ADQ SP-Devices via mex_ADQ CC Swerim
7 months ago | 0 downloads |
How to update array inside a database
I think Ive found half the solution. When I read out the responce from the database I have to convert the varbin that is inter...
7 months ago | 0
Question
How to update array inside a database
How can i update the contents of one row of ColumnOfInterest (see below) with a new array? conn = database('DB'....); data = f...
8 months ago | 2 answers | 0
2
answersbest practice for continuous processing of data from database
I guess I could use a timer object to schedule a lookup in the database? However, can I restart the timer? Or should I create a ...
8 months ago | 0
Question
best practice for continuous processing of data from database
I want to setup a computer to continuously ask a database for new data, process the new data and then write back the reults of t...
11 months ago | 1 answer | 0
1
answerQuestion
restricting get method to not process all the values
I have a get method that calulates a 2-d matrix based on data in a 3d-matrix. This calculation takes some time to perform if I h...
1 year ago | 1 answer | 0
1
answerPlotting >500 curves verry slow since new plotting mode appeared?
Se comment above about colororder
1 year ago | 0
| accepted
Question
Sometimes Matlab does not perform task until a "return" is performed in the Command Window. Am I alone?
I have som AppDesigner GUIs that performs tasks when I click some button. Sometimes Matlab simply doesnt perform the task unless...
1 year ago | 0 answers | 0
0
answersQuestion
Plotting >500 curves verry slow since new plotting mode appeared?
I have been plotting many 1000 curves (double with ~32000 points in each line) in matlab with regular "plot" function and have r...
1 year ago | 2 answers | 0
2
answersHow to get general interval from a string with regexp
Seems this works ok: [v,vv]=regexp(obj.FileName,[' X ([-\d\.]){1,10}-([-\d\.]){1,10} mm'],'tokens','match'); if ~isempty(v) % ...
2 years ago | 0
Question
How to get general interval from a string with regexp
I have a long string (FileName) from which I would like to extract some variables describing the X values. The string contins th...
2 years ago | 2 answers | 0
2
answersHow can I calculate a weighted mean in Matlab?
See this function https://se.mathworks.com/matlabcentral/fileexchange/14416-wmean?s_tid=srchtitle
2 years ago | 0
How do I collaborate on matlab?
I would also like to be able to work simultaneously on the same file. Just as one can in google docs or office 365... it really ...
3 years ago | 0
Question
How can my code know if it iss called from the base or from some other function?
I want my "figure formatting function" to copy the current figure if it is called from "base"-workspace but not if it is called ...
4 years ago | 1 answer | 0
1
answerHow to make long title for a plot with automatic line breaks?
ha=gca; NoCharPerLine= 78; % or whatever you want... if ismatrix(ha(end).Title.String) && size(ha(end).Title.String,2)>NoCh...
4 years ago | 0
Question
Can I force Matlab to not place new figures on top?
I have some scripts that plots graphs and exports them with export_fig(...). the figures always pops up to "stay on top". Can i ...
4 years ago | 3 answers | 0
3
answerscalling subclass method does not pass the obj only the argument
This seems to work: OBJ=FLUS; OBJ.fun1(OBJ,extravalues);
4 years ago | 0
Question
How can I change the icon of my AppDesigner-produced GUIs?
I would like to easily distinguage my GUI from the figures when pressing Alt+Tab so I can access it faster. Now when I run the...
4 years ago | 4 answers | 0
4
answersHow to make long title for a plot with automatic line breaks?
Write code to # Get the axis width (ha.Position), and fontsize (ha.Title.FontSize) in pixels (where ha is the handle to the ...
4 years ago | 0
Question
calling subclass method does not pass the obj only the argument
I have these classes classdef LUS < handle methods function fun1(obj,extravalues) %some code using extravalues ...
4 years ago | 1 answer | 0
1
answerQuestion
How to auto rotate x/y/z-label to the same angle as the axis?
I use the 'Rotation' option to get the text aligned with the axis at the momet, eg: xlabel('Frequency (MHz)','Rotation',-10)...
4 years ago | 1 answer | 0
1
answerQuestion
How to synchronize two datasets with different AND varying sampling rate?
I have the data sets, Data1 and Data2 like below: Data1.t % vector with timestamps e.g. [0.1, 0.4 2 2.3 4 4.5 4.7 etc...] ...
4 years ago | 0 answers | 0
0
answersQuestion
What is the difference between designfilt and fdesign
Im trying to do zero phase filter my obj.CurrentData with this: % FilterType='butter'; % FilterP...
4 years ago | 1 answer | 1
1
answerHow can I stop image stretching using imshow in the new App designer?
Have you tried variations of "axis"? Like axis(app.UIAxes,'equal')
4 years ago | 1
Question
Advise on how to structure different classes. I'm OO newbie
I have between 1 and 1500 oscilloscope traces that make up a 2D-dataset that is associated with a lot of other parameters (eg X,...
5 years ago | 1 answer | 0
1
answerQuestion
Where should I save my own app prefereces?
I have my AppDesigner-app and I want it to remember the settings from last session. How and where should i prefereably save the ...
5 years ago | 2 answers | 0
2
answersQuestion
Can I "collapse all in" the editor like in the help browser
When I work in a class I usually collapse all my methods (functions) to get a better overwiew. BUT I cant seem to find a way of ...
5 years ago | 1 answer | 1
1
answerQuestion
Can Í have a listener in a class that checks if the folder-content is changed?
I have a folder that recievs files from time to time and I want matlab to plot the data directly as they arive in the folder... ...
5 years ago | 1 answer | 0
1
answerQuestion
setting transparancy of legend?
Is it possible to make the background of the legend be slighly transparent so that the lines behind it can be somewat visible?
5 years ago | 3 answers | 0