Community Profile

photo

Amit


Self organized

Last seen: 10ヶ月 前 2015 年からアクティブ

Followers: 0   Following: 0

連絡

Professional Interests: Image Processing, simulink, GUI, Control system, Communication tools

統計

All
  • Thankful Level 2
  • Community Group Solver
  • Introduction to MATLAB Master
  • Knowledgeable Level 2
  • Thankful Level 1
  • Revival Level 1
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

回答済み
How to do this while loop
We can do it in this way : A = [1 2 3]; B = [2 4 5]; LenA = 1; while LenA <= length(A) if(A(LenA)-B)<=1 out = t...

約4年 前 | 1

| 採用済み

回答済み
Importing Microsoft Excel data to MATLAB as a single variable from multiple spreadsheets that contains various data ranges
Hello Peter, Try the below solution : station = []; SheetName = {'CTD 2014'; 'CTD 2015'; 'CTD 2016'; 'CTD 2017'; 'CTD 2018';...

約4年 前 | 0

| 採用済み

回答済み
How to change the matrix form?
Not clear what you exacly expect, if some more clarity you can give on the problem, that would be helpful. if it helps:

約4年 前 | 0

回答済み
Use From/Goto Block in different model file
Goto and From blocks have a limited scope of visibility, which cannot cross over one model to another. local (default) — From a...

約4年 前 | 0

| 採用済み

回答済み
How to set() plot in matlab with cell array
This should work, I think you had missed the transpose of x-array: A = cell2mat(cellArray); set(hPlot3, 'Xdata...

4年以上 前 | 0

質問


How to Configure simulink out-ports to generate specific argument of function?
So I want to generate the code for a function where it gives the argument as shown in the image below. So what configuration sho...

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

1

回答

回答済み
How to generate s-function block from Autosar SWC ?
The particular subsystem should be configured as AUTOSAR SW component first, and all the IN/OUT ports have to be configured as A...

4年以上 前 | 1

回答済み
Unable to read strings (I get NaN) in the excel file imported into Matlab
Import the exel data with option cell array output type, not as Numeric matrix.

4年以上 前 | 0

回答済み
How to calculate (hh:mm:ss + minutes()) and show the all result in GUI table?
Use clock function to display current time on your gui : I hope the below code will help you. for i =1:10 time= clock; if...

4年以上 前 | 0

回答済み
Display value to gui table
Hi, Arrange the result data in matrix form and set on the table using table handle. If the data is getting calculated in some o...

4年以上 前 | 0

回答済み
Bring Figure to main GUI and take control over that figure
If you wants to plot your data on GUI, you have to write the code in callback of some button from where you can control the fig....

4年以上 前 | 0

| 採用済み

回答済み
Array indexing, matrix indexing
Hi, not sure why you are using the if condition as the statements are same in if and else block.. And use one more loop to get ...

4年以上 前 | 0

回答済み
AUTOSAR from arxml to model - errors using importerobj
ARXML file generally contains the information of AUTOSAR compliance interfaces and data definintions etc, the inside functionali...

4年以上 前 | 0

質問


How to use Model Referencing in Target-link for incremental code generation?
I have developed a model which i want to reference in the main component model, but while generating code i am facing so many is...

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

0

回答

回答済み
unable to run .m or .slx file from GUI pushbutton callback
GUI callback is basically a function which do not share base workspace. So when you calling your script through callback its va...

約6年 前 | 0

回答済み
How to save each iteration of a nested for loop as rows
p =0; for i = 1:size(starttime,1) for j = 1:size(cell,2) ...

約6年 前 | 0

回答済み
I am writing a code to read a text file
Use /r/n in your code

約6年 前 | 0

| 採用済み

回答済み
merge image using matlab
Yes you can do this as: im1= imread('image1.jpg'); im2= imread('image2.jpg'); im3= imread('image3.jpg'); r = i...

約6年 前 | 0

| 採用済み

質問


how to swap input interfaces with each other without using switch or if block?
eg. I have four input interfaces H1,H2,H3 & H4. So based on some valid condition i have to swap these signals like this (H4->H1,...

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

1

回答