photo

Kanchibhotla Chandra Sekhar


General Electric (GE)

Last seen: 5年弱 前 2013 年からアクティブ

Followers: 0   Following: 0

Professional Interests: Power Electronics, Electrical Machines, Electrical Drives, Microprocessors, DSP

統計

All
MATLAB Answers

23 質問
4 回答

Cody

0 問題
22 解答

ランク
6,523
of 300,763

評判
7

コントリビューション
23 質問
4 回答

回答採用率
30.43%

獲得投票数
4

ランク
 of 21,082

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
22,039
of 170,923

コントリビューション
0 問題
22 解答

スコア
240

バッジ数
2

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 2
  • First Review
  • Thankful Level 1
  • Commenter
  • Solver

バッジを表示

Feeds

表示方法

質問


uiwait, msgbox, listdlg are not working properly in Matlab 2013a with Windows 7
I have recently started using the Matlab 2013a with Windows 7. I have observed that some of the basic matlab functionalities are...

5年以上 前 | 1 件の回答 | 0

1

回答

質問


Continuous Background running of MATLAB Compiled Application
I have recently developed one MATLAB Complied Application, but that application when i run in the other systems, its behaving st...

6年以上 前 | 0 件の回答 | 0

0

回答

質問


How to Apply Numbering to Heading Titles in Word through actxserver
I am creating a MS word document through actxserver, i have created so Heading in the word using the following code. word = ac...

6年以上 前 | 0 件の回答 | 0

0

回答

質問


MATLAB Access Box Folders
My Organisation is using the Box Folders for storing the Data, Is there any way MATLAB is having API kind of thing which will ac...

6年以上 前 | 3 件の回答 | 0

3

回答

質問


Scalar Multiplication of different values at same time
I have a function - [x1 x2 x3] = somefunction(y1,y2); now i want to multiply the [x1 x2 x3] by scalar value z. [x1 x2 x3] = ...

6年以上 前 | 1 件の回答 | 0

1

回答

質問


Get Values of uibuttongroup uicontrol checkboxs when i clicked on other uibuttongroup uicontrol pushbutton
I want to get the data of the checkbox values when i clicked on the submit button, presently just the callback is executed but n...

6年以上 前 | 1 件の回答 | 0

1

回答

回答済み
C# function which accepts only MWarray instead of MWarray[] as input to the function
I have used the following code - % It gives the view how the code will be implemented using the C# result = function1(filepat...

7年弱 前 | 0

| 採用済み

質問


C# function which accepts only MWarray instead of MWarray[] as input to the function
I have compiled the two matlab functions as NET assembly which will be used in the C# languague as follows - % It gives the vi...

7年弱 前 | 1 件の回答 | 0

1

回答

質問


fwrite with fixed length of different data types
I have a know format file with different reading format. Example - fread(fid,[1, 40], 'char') fread(fid,[1, 4], 'long') frea...

約7年 前 | 1 件の回答 | 0

1

回答

質問


Install MATLAB Engine API for Python using Runtime Engine
I am having Matlab 2017a where i am able to call the functions of matlab from Python 3.5 by installing the Matlab API function. ...

7年以上 前 | 0 件の回答 | 0

0

回答

質問


Read size of the file in Windows Server 2012
I want to read the file size in windows server 2012. I have used the - files_log = [ dir(fullfile(cd,'Matlab_log_file.txt'...

7年以上 前 | 1 件の回答 | 0

1

回答

質問


Keyboard Shortcut for the Listing of Submenu Items in Main Menu - Matlab GUI
I created the Menu for my Matlab GUI which is "File" under which sub menus are Open, Save & Exit. When i clicked on the File Men...

11年以上 前 | 1 件の回答 | 0

1

回答

質問


How to extract text between two specific words using fread operation
I have an data file where i need to extract the text between two specific words <Edata Line1 Line2 Edata> I ne...

11年以上 前 | 2 件の回答 | 0

2

回答

質問


Automatic Increment of Build number while creating the Standalone applications
I am creating a standalone application having Version and Build number stored in a MAT file. I want auto-increment of the build ...

11年以上 前 | 0 件の回答 | 1

0

回答

質問


How to know the COM Server Program ID of Various Applications to use in MATLAB
How can i know the COM Server Program ID of various applications like WinRAR, 7zip, WinZip etc. to use in MATLAB. I know t...

11年以上 前 | 2 件の回答 | 0

2

回答

回答済み
Alignment of the Legend in Matlab Plot Figure
x = [1:10]; y = 2*x; z = x+1.25*y; z1 = z+x; h(1)=subplot(4,1,1); plot(x); legend('x Variable','Location','N...

11年以上 前 | 3

| 採用済み

質問


How to read the data of *.csv file inside Zip File without extracting the contents
I have number of Zip Files [File1.zip, File2.zip, File3.zip,....Filen.zip] in which each zip file is having the "Data.csv" file ...

11年以上 前 | 1 件の回答 | 0

1

回答

質問


Alignment of the Legend in Matlab Plot Figure
I am trying to plot a figure with five sets of data with subplot is having individual legend but the problem is axis is getting ...

11年以上 前 | 1 件の回答 | 0

1

回答

質問


Run Batch File from Matlab as if i run by double clicking it in windows
I want to run a batch file from matlab as if i double click on batch file. cmd.exe has to close after compilation of the batch f...

12年弱 前 | 0 件の回答 | 0

0

回答

質問


How to avoid duplicate running of Matlab Standalone Exe Application
I have created a matlab exe standalone application. But If a accidentally run same exe file at any other location, it will corru...

12年弱 前 | 1 件の回答 | 0

1

回答

回答済み
Error in Overiding Data in compiled MAT file in Standalone Application
I have used the following code - save 'Values.mat' 'x1' 'x2' '-append'; which working perfectly fine....

12年弱 前 | 0

| 採用済み

質問


Error in Overiding Data in compiled MAT file in Standalone Application
I have a set of values which i have saved in MAT file and along with several m-files compiled and created a stand alone applicat...

12年弱 前 | 2 件の回答 | 0

2

回答

質問


Error in autoplotting and saving data images when using simplot
I have a simulation which i am controlling from m-file. In the simulation, i have 10 plots which i want to plot every m value fi...

約12年 前 | 0 件の回答 | 0

0

回答

解決済み


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

12年以上 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

12年以上 前

解決済み


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

12年以上 前

解決済み


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

12年以上 前

解決済み


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

12年以上 前

質問


How to update Title and Subtitles each time in a loop for publishing document
I want to publish the documentation. I am going to do several test on one file and want to publish all of them in one document. ...

12年以上 前 | 1 件の回答 | 0

1

回答

解決済み


Create an index-powered vector
Given a input vector x, return y as index-powered vector as shown below. Example x = [2 3 6 9] then y should be [...

12年以上 前

さらに読み込む