Statistik
13 Fragen
0 Antworten
RANG
222.223
of 297.016
REPUTATION
0
BEITRÄGE
13 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
69.23%
ERHALTENE STIMMEN
0
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
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
Feeds
Frage
Need sources to learn CUDA programming for simulink.
I want to know if there are any sources to learn CUDA programming to run a SIMULINK file through GPU. (using GPU since the norma...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
are there any web computing platform availabe for students to compute huge simulink file?
I check for AWS with MATLAB but I want to know to what extent it is free
etwa 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to apply tangent function to each element in a cell array?
suppose, slope={ [ ], [-0.076,-1.45,-20.5,-0.49], [ ] }; I want to get the angles(radians or degrees) by applying tangent funct...
etwa 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
I want to know how to assing variable value depending on the value it self. Explained in detail below.
Consider I=[2,3,5]; now depending on the values of I i want to assign other variables as r2=2, r3=3, r5=5. If the elements in...
etwa 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
I am trying to create a simple moist air model and getting an error which I am unable to understand. Please help if you understand this.
and am getting the following error An error occurred while running the simulation and the simulation was terminated Caused by:...
etwa 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
I want to learn how to implement WSN in SIMULINK. Can anyone suggest some tutorial?
I can across many papers which only discusses about different WSN simulation frameworks but I couldn't find any proper material ...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
I have this code which is behaving differently for decimal and integer values. Where am I missing??
x=0.1; y=0.1; a=[x,y]; b=[0.2,0.2]; tf=isequal(a,b); while tf==0 x=x+(0.01); y=y+(0.01); a=[x,y]; ...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Am beginner here, can anyone tell me What is wrong with the code with while loop?
The following code is a simplified version of my problem. Can anyone pointout why the loop is not terminating?? x=2; y=2...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to plot closed polygon from set of random points with edges not intersecting?
I have set of random points in 2D plane, and have to make a closed polygon without any intersection between edges. There is a po...
fast 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Hello, I need help in path planning from a Hamiltonian matrix with a condition that I visit each point only once with starting point known.
mat=[0,10,8,7,7;10,0,10,5,6;8,10,0,8,9;7,5,8,0,6;7,6,9,6,0] % C is a hamiltonian matrix containing relative distances In ...
fast 7 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
I have 98x3 matrix with only 7 unique rows of values which are output of some simulation. How do I extract that? I tried Unique function but am not getting unique rows. Below is the original matrix A and matrix after using unique function B.
A 0 0 0 0 0 0 0 0 0 0 0 ...
fast 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
am trying to get the non zero minimum values from all the rows. Am getting the correct minimum values but the indices for minimum values for the first and second rows are wrong. Suggest me where I am wrong
C=[0,10,8,9,7;10,0,10,5,6;8,10,0,8,9;9,5,8,0,6;7,6,9,6,0]; j=5; for n=1:j e=C(n,:); [M(n),I(n)]=min(e(e>0)); end d...
fast 7 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How do I extract non zero minimum value and its index from a specific row??
for ex, C=[0,10,8,9,7;10,0,10,5,6;8,10,0,8,9;9,5,8,0,6;7,6,9,6,0]; i need min value from row 1 greater than zero. How do i get...
fast 7 Jahre vor | 1 Antwort | 0