Srinivas
Toyota Motor Engineering & Manufacturing North America Inc
自 2011 起处于活动状态
Followers: 0 Following: 0
Professional Interests: Controls
Feeds
已回答
How can I save all screen outputs and figures generated in one MS Word file?
doc _publish_
How can I save all screen outputs and figures generated in one MS Word file?
doc _publish_
10 years 前 | 0
已回答
How do i import signal names from a excel database( a CAN database) for usage in Simulink simulations
did you look at _'xlsread'_ [num,txt,raw,custom] = xlsread(filename,sheet,xlRange,'',functionHandle) this should read th...
How do i import signal names from a excel database( a CAN database) for usage in Simulink simulations
did you look at _'xlsread'_ [num,txt,raw,custom] = xlsread(filename,sheet,xlRange,'',functionHandle) this should read th...
10 years 前 | 0
已回答
How to determine a reason of the error "Segmentation violation" and to fix it
Are using Simulink Design optimization, in that case may be you are running into a negative square root in the model. Make sure ...
How to determine a reason of the error "Segmentation violation" and to fix it
Are using Simulink Design optimization, in that case may be you are running into a negative square root in the model. Make sure ...
10 years 前 | 0
已回答
Shut down Matlab and open new Matlab instance
something like this Curr_dir = pwd; bat_str = ['"' matlabroot '\bin\matlab.exe' '"']; fid = fopen('restart_matlab...
Shut down Matlab and open new Matlab instance
something like this Curr_dir = pwd; bat_str = ['"' matlabroot '\bin\matlab.exe' '"']; fid = fopen('restart_matlab...
10 years 前 | 1
已回答
Saving multiple figures to a named folder
function fftval(in,out) x = load(in); % or importdata or csvread or xlsread or whatever your reading function is. y =...
Saving multiple figures to a named folder
function fftval(in,out) x = load(in); % or importdata or csvread or xlsread or whatever your reading function is. y =...
10 years 前 | 0
已回答
specify Simulink block parameters from Excel cells
Yes it can be done from the work space. Declare a parameter for each sample time and define it in your work space.
specify Simulink block parameters from Excel cells
Yes it can be done from the work space. Declare a parameter for each sample time and define it in your work space.
10 years 前 | 0
| 已接受
已回答
How can I make subplots larger?
x=1:10; y1=x.^0.5; y2=x; y3=x.^2; y4=x.^3; sp_hand1 = subplot(4,1,1); plot(x,y1); sp_hand...
How can I make subplots larger?
x=1:10; y1=x.^0.5; y2=x; y3=x.^2; y4=x.^3; sp_hand1 = subplot(4,1,1); plot(x,y1); sp_hand...
10 years 前 | 3
已回答
how to assign a microchip pic pin to a simulink input block?
This link may help <http://www.kerhuel.eu/wiki/Simulink_-_Embedded_Target_for_PIC Simulink - Embedded Target for PIC> HTH
how to assign a microchip pic pin to a simulink input block?
This link may help <http://www.kerhuel.eu/wiki/Simulink_-_Embedded_Target_for_PIC Simulink - Embedded Target for PIC> HTH
11 years 前 | 0
已回答
Reading microsoft excel spreadsheets not within the 'Current Folder' directory in Matlab working environment?
you can give your full path in *xlsread* some thing like this data = xlsread('C:\Users\username\myfile.xlsx')
Reading microsoft excel spreadsheets not within the 'Current Folder' directory in Matlab working environment?
you can give your full path in *xlsread* some thing like this data = xlsread('C:\Users\username\myfile.xlsx')
11 years 前 | 2
已回答
Exporting data to excel every time a program is run
look for the _*sheet*_ and _*range*_ options in *_xlswrite_* _'I want it to write the answer to the same spreadsheet as the f...
Exporting data to excel every time a program is run
look for the _*sheet*_ and _*range*_ options in *_xlswrite_* _'I want it to write the answer to the same spreadsheet as the f...
12 years 前 | 0
已回答
Report generation without rptgen
doc publish http://www.mathworks.com/help/matlab/ref/publish.html
Report generation without rptgen
doc publish http://www.mathworks.com/help/matlab/ref/publish.html
12 years 前 | 0
已回答
Copy a plot into word without loosing quality
there are a lot of file exchange submissions, one of them <http://www.mathworks.com/matlabcentral/fileexchange/3149-save2word...
Copy a plot into word without loosing quality
there are a lot of file exchange submissions, one of them <http://www.mathworks.com/matlabcentral/fileexchange/3149-save2word...
12 years 前 | 0
已回答
how to remove certain characters from a string in a file
one way mystr = '32/4/5' loc = strfind(mystr,'/') mystr(loc(1):end) =[]
how to remove certain characters from a string in a file
one way mystr = '32/4/5' loc = strfind(mystr,'/') mystr(loc(1):end) =[]
12 years 前 | 1
已回答
Is there a way to publish scripts and/or functions called by the m file being published?
_*MATLAB report generator*_ may be, I am not 100% sure if a single file _*publish*_ can be used
Is there a way to publish scripts and/or functions called by the m file being published?
_*MATLAB report generator*_ may be, I am not 100% sure if a single file _*publish*_ can be used
12 years 前 | 0
已回答
reading and writing files from open office
did u try using *xlsread* u should be able to read files. I am not sure of xlswrite edit: from the help file of *xlsread*...
reading and writing files from open office
did u try using *xlsread* u should be able to read files. I am not sure of xlswrite edit: from the help file of *xlsread*...
12 years 前 | 0
| 已接受
已回答
Share your favorite snippet or utility
I have a lazy shortcut to open the current folder I am working in system(strcat('%SystemRoot%\explorer.exe',' "',pwd,'"'))...
Share your favorite snippet or utility
I have a lazy shortcut to open the current folder I am working in system(strcat('%SystemRoot%\explorer.exe',' "',pwd,'"'))...
12 years 前 | 1
已回答
Copying multiple files to a location using wildcard
As per the help document copyfile('Projects/my*','../newProjects/') so it should be copyfile([RawCSVfolder '\*.csv'...
Copying multiple files to a location using wildcard
As per the help document copyfile('Projects/my*','../newProjects/') so it should be copyfile([RawCSVfolder '\*.csv'...
12 years 前 | 0
已回答
Track changes made to model
you may want to look at <http://www.ensoftcorp.com/simdiff/>
Track changes made to model
you may want to look at <http://www.ensoftcorp.com/simdiff/>
12 years 前 | 2
已回答
How to solve string error in xlswrite?
what version of MATLAB are you using, looks like you are referring to this link <http://www.mathworks.com/matlabcentral/filee...
How to solve string error in xlswrite?
what version of MATLAB are you using, looks like you are referring to this link <http://www.mathworks.com/matlabcentral/filee...
12 years 前 | 0
| 已接受
已回答
Is it possible to read data from .dat or .m file for an intial value of IC block in simulink?
you can assign 25 variables with the values, save them to a mat file and load it before the simulation.
Is it possible to read data from .dat or .m file for an intial value of IC block in simulink?
you can assign 25 variables with the values, save them to a mat file and load it before the simulation.
12 years 前 | 0
| 已接受
已回答
how to call a column of data from excel into matlab
yourdata = xlsread(your file name); then you can process it help mean help xlsread help importfile
how to call a column of data from excel into matlab
yourdata = xlsread(your file name); then you can process it help mean help xlsread help importfile
12 years 前 | 0
| 已接受
已回答
add two number and create the text file with the result in it
help xlswrite help fprintf may be you can do quick google search for this
add two number and create the text file with the result in it
help xlswrite help fprintf may be you can do quick google search for this
12 years 前 | 0
提问
Simulink design optimization with Parallel computing toolbox
Hello all, I am using Simulink design optimization with parallel computing toolbox to tune some parameters( usually 10-15), the...
12 years 前 | 1 个回答 | 0
1
个回答已回答
Making change with coins, problem (greedy algorithm)
you are writing on to money again and you have an infinite loop function[coins] = change12(money) %initial amounts...
Making change with coins, problem (greedy algorithm)
you are writing on to money again and you have an infinite loop function[coins] = change12(money) %initial amounts...
12 years 前 | 1
| 已接受
已回答
Help with an error
MATLAB is case sensitive, replace your Nt = zeros(n,3) i = 1, MATLAB does not allow indices to be '0';
Help with an error
MATLAB is case sensitive, replace your Nt = zeros(n,3) i = 1, MATLAB does not allow indices to be '0';
12 years 前 | 1
| 已接受