Answered
How to load data form specific memory address of the computer
Hi zohar, I guess you want to share large data sets with functions without the need to copy the data. Please have a look at L...

13 years ago | 0

Answered
MATLAB Coder & Embedded coder are different product or Matlab Tool ?
Hi, if you want to use matlab functions in your microcontroller code you can use Matlab Coder. Matlab Coder can produce c and...

13 years ago | 0

| accepted

Answered
How to find a chunk of a certain number of zeros inside a vector
Hi Pedro, just programming straigforward I would use A = [0;1;1;0;0;0;0;1;1;1;1;0;1;]; cons = 4; indices = find(A...

13 years ago | 0

Answered
string choppping
Hi William, if you use str = outloc(strfind(outloc,'\MATLAB'):end) you will get str = \MATLAB Gerd

13 years ago | 0

Answered
Importdata won't work with this txt file
Hi Jason, I would use the textscan command to extract the data. By using fid = fopen('Data.txt') tmp = textscan(fi...

13 years ago | 0

Answered
Load and average lots of .mat files
Hi Michael, load the first file. Give the variable a different name, e.g. _index, load the next file. Again copy the variable...

13 years ago | 0

Answered
Skip Error Message and Continue with the M-File
Hi, just use the try command on the weboperation. try %commands to be executed end If you do have a problem bet...

13 years ago | 1

Answered
Segment of Graph Extraction
Hi Daniel, I don't know any plotting tool in Matlab but with some lines of code it shouldn't be a problem. xlimit=get(gc...

13 years ago | 0

Answered
send data continuously
Hi Paskah, you can use timers in Matlab to send continously data to your serial device. t = timer ; set(t,'Execution...

13 years ago | 0

| accepted

Answered
stateflow
Hi Murali, using a sample time of 0.01s for your model lets you only generate pulses with a multiple of the basic sample time...

13 years ago | 0

| accepted

Answered
clear single plots intead of the whole plot
Hi Johan, on a simple plot you would write a=linspace(0,10,1000); b=sin(a); c=cos(a); h1 = plot(a,b); hold ...

13 years ago | 0

Answered
Auto save file name by using original name
Hi takem, do to the fact you have the handle to your new figure you can use saveas(h,[filepath '\' Savefilename Savefil...

13 years ago | 2

Answered
Loading and using a .MAT file
Hi William, you have to use % to save a file called "filename" in the folder "D:\Temp_folder" save('D:\Temp_folder\fi...

13 years ago | 0

Answered
How can I hold the previous "legend" on a plot?
For example I you would like to show the sin and cos you would use t=[0:0.1:10] x=sin(t) y=cos(t) plot(t,x) ho...

13 years ago | 2

Answered
How can I hold the previous "legend" on a plot?
Hi sadel, to get the current legend use % you have to have a legend on the current plot get(legend(gca),'String'); % g...

13 years ago | 1

Answered
help to find similar variables and add them togeher
Hi, without the Statistics Toolbox I would use t=[0.1 0.3 0.2 0.1 0.4 0.2 0.5 0.9 0.7 0.1 0.4 0.8 0.25 0.2 0.3 0.1]; P=...

13 years ago | 1

Answered
Problem getting handles structure to update in GUI
Hi Michael, I also have sometimes a strange behaviour using the guidata(hObject) terminology. I started using for my own data...

13 years ago | 0

| accepted

Answered
Check for instrument objects
Hi Arun, what interface objects are you looking for. When you talking about serial communication object you can find them usi...

13 years ago | 0

| accepted

Answered
Create listener / Interrupt to detect new CAN message
Hi Chirag, thank you for your answer. The functions you described MessageReceivedFcnCount and MessageReceivedFcn are from th...

13 years ago | 0

Question


Create listener / Interrupt to detect new CAN message
Hi all, I am writing some routines to interface my PEAK Systems CAN USB Dongle. I managed to get it all working (send and rec...

13 years ago | 2 answers | 0

2

answers

Answered
Converting fortran code to matlab
Hi Walter, thank's for your reply. I did a lot of investigations on my code. The code "looks" like the same as in my fortran...

13 years ago | 0

Question


Converting fortran code to matlab
Hello, I have a Fortran .dll compiled on a Win32 XP machine and the fortran source code. I moved the code to Matlab to be more...

13 years ago | 2 answers | 0

2

answers

Question


GUI data Update
Hi guys, I'm building a gui in matlab and have a question about the guidata update. I want to let the user change a value on...

13 years ago | 1 answer | 0

1

answer