![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/2860222_1522091817508_DEF.jpg)
Srinivas
Toyota Motor Engineering & Manufacturing North America Inc
Followers: 0 Following: 0
Professional Interests: Controls
Estadística
1 Pregunta
34 Respuestas
0 Problemas
22 Soluciones
CLASIFICACIÓN
823
of 297.046
REPUTACIÓN
92
CONTRIBUCIONES
1 Pregunta
34 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
17
CLASIFICACIÓN
of 20.422
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
20.003
of 157.776
CONTRIBUCIONES
0 Problemas
22 Soluciones
PUNTUACIÓN
240
NÚMERO DE INSIGNIAS
2
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
How can I save all screen outputs and figures generated in one MS Word file?
doc _publish_
más de 10 años hace | 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...
casi 11 años hace | 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 ...
casi 11 años hace | 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...
casi 11 años hace | 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 =...
casi 11 años hace | 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.
casi 11 años hace | 0
| aceptada
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...
casi 11 años hace | 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
más de 11 años hace | 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')
casi 12 años hace | 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...
alrededor de 12 años hace | 0
Report generation without rptgen
doc publish http://www.mathworks.com/help/matlab/ref/publish.html
alrededor de 12 años hace | 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...
alrededor de 12 años hace | 0
how to delete a row from the matrix??
san(2,:) = []
alrededor de 12 años hace | 0
| aceptada
how to remove certain characters from a string in a file
one way mystr = '32/4/5' loc = strfind(mystr,'/') mystr(loc(1):end) =[]
alrededor de 12 años hace | 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
alrededor de 12 años hace | 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*...
más de 12 años hace | 0
| aceptada
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,'"'))...
más de 12 años hace | 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'...
más de 12 años hace | 0
Track changes made to model
you may want to look at <http://www.ensoftcorp.com/simdiff/>
más de 12 años hace | 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...
más de 12 años hace | 0
| aceptada
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.
más de 12 años hace | 0
| aceptada
Resuelto
Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...
casi 13 años hace
Resuelto
Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...
casi 13 años hace
Resuelto
Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...
casi 13 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
casi 13 años hace
Resuelto
Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...
casi 13 años hace
Resuelto
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...
casi 13 años hace
plotting two different graphs
help figure is this what you want
casi 13 años hace | 4
| aceptada
Resuelto
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
casi 13 años hace