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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar ago | 0

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

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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 ...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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=...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

ongeveer 13 jaar 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...

meer dan 13 jaar 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...

meer dan 13 jaar ago | 1 answer | 0

1

answer