photo

Astik Sachan


Aktiv seit 2016

Followers: 0   Following: 0

Statistik

MATLAB Answers

1 Frage
13 Antworten

RANG
2.784
of 300.331

REPUTATION
22

BEITRÄGE
1 Frage
13 Antworten

ANTWORTZUSTIMMUNG
0.0%

ERHALTENE STIMMEN
7

RANG
 of 20.920

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.124

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Revival Level 1
  • Knowledgeable Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How to calibrate camera with coding by first selecting points on checkerboard and later on re-project back to image ?
You can take a look at :- https://in.mathworks.com/help/driving/ug/calibrate-a-monocular-camera.html this needs Automated Dri...

mehr als 6 Jahre vor | 0

Beantwortet
What is difference between mpt parameter and simulink parameter
Consider my previous answer here https://in.mathworks.com/matlabcentral/answers/80681-what-is-the-difference-between-simulink-...

mehr als 6 Jahre vor | 0

Beantwortet
Failed to generate all binary outputs
Try adding the source files that are used for S-function Through Configuration Parameters -->Code Generation-->Custom Code ...

fast 8 Jahre vor | 0

Frage


Failed to generate all binary outputs
Hi, I am generating Code for a model containing S_Functions in MATLAB 2015b using Simulink and facing the following error. Pl...

fast 8 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
How do i initialize inputs in Stateflow charts?
# Open stateflow chart. # Open Model Explorer (Ctrl+H). # Goto Add>>Data , a variable named data will be added in the Model Ex...

mehr als 8 Jahre vor | 0

Beantwortet
How can i flip a (M x N) matrix to (N x M)?
There are two ways to do it:- 1. <%3Chttp://in.mathworks.com/help/matlab/ref/transpose.html%3E Transpose Function> A = ...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
How can I read text file in MATLAB? (files include text)
# Add Folder where your ".txt" file is to path of matlab. # Or you can use absolute path to the text file to read it.

mehr als 8 Jahre vor | 0

Beantwortet
How can i select 1 of the 2 outputs on the basis of conditions?
<https://in.mathworks.com/help/simulink/slref/merge.html Merge Block> will work fine here as 1 output at a time will be enabled ...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
In a Simulink model, Check at simulation time 't' (eg. @t=3sec) what is the value of a signal (signal is from signal builder).
You can use the <https://in.mathworks.com/help/simulink/slref/clock.html Clock Block> available in Simulink Library It gives ...

mehr als 8 Jahre vor | 0

Beantwortet
replicating/copy part of Cell Array
CA{100,5}; %you have tempCA = {CA{1:50,4:5}}; NewCA = reshape(tempCA,[50,2]); Try this!

mehr als 8 Jahre vor | 1

Beantwortet
can we control Data Inspector from command line ?
Hi, You may want to look at following links:- <https://in.mathworks.com/help/simulink/slref/simulink.sdi.view.html Simulink ...

mehr als 8 Jahre vor | 0

Beantwortet
matlab exe file to run as admin
In command prompt write runas /user:<admin_username> matlab.exe after which it will ask for the Password enjoy!

mehr als 8 Jahre vor | 2

Beantwortet
How can I have MATLAB find and replace text in a MS Word document
You can use following code as well and edit it as per need! [fname path] = uigetfile('*.doc*'); fpath = [path fname]; ...

mehr als 8 Jahre vor | 2

Beantwortet
what is the difference between simulink objects and mpt objects
Apart from Custom Data Types and things as told above , " *mpt objects*" have " *CUSTOM ATTRIBUTES*" That Incude follows, ...

mehr als 9 Jahre vor | 2