photo

Tamir Suliman


Sudan University of Science and Technology

Last seen: casi 2 años hace Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Sudan University of Science and Technology EE Johns Hopkins University ECE University of South Carolina CS

Estadística

All
MATLAB Answers

4 Preguntas
48 Respuestas

File Exchange

11 Archivos

Cody

0 Problemas
7 Soluciones

CLASIFICACIÓN
2.035
of 297.503

REPUTACIÓN
32

CONTRIBUCIONES
4 Preguntas
48 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.0%

VOTOS RECIBIDOS
4

CLASIFICACIÓN
1.496 of 20.449

REPUTACIÓN
1.250

EVALUACIÓN MEDIA
3.10

CONTRIBUCIONES
11 Archivos

DESCARGAS
48

ALL TIME DESCARGAS
12049

CLASIFICACIÓN
41.509
of 159.017

CONTRIBUCIONES
0 Problemas
7 Soluciones

PUNTUACIÓN
90

NÚMERO DE INSIGNIAS
2

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Personal Best Downloads Level 3
  • 5-Star Galaxy Level 3
  • First Review
  • First Submission
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Commenter
  • Solver

Ver insignias

Feeds

Ver por

Respondida
mulitlevel structure does not work with simulink bus
check the input and output data types of the MATLAB function block. The input should be a vector of the same length as the numb...

alrededor de 2 años hace | 0

Respondida
exportONNXNetwork works but importONNXNetwork can't load input layer
All i can say based on your description, it seems like the issue may be related to the input data format or rank of the exported...

alrededor de 2 años hace | 0

Respondida
Mex file compiling issue
Your MEX file was not created successfully. This can happen if there were errors during the compilation process. To troubleshoo...

alrededor de 2 años hace | 0

Respondida
When importing a URDF model into a Simscape™ Multibody™ model, how do I set the geometry scale attribute to 0.1?
This will import the model 'mymodel.urdf' and scale it by a factor of 0.1 using the decimeter unit. robot = importrobot('mymode...

alrededor de 2 años hace | 0

Respondida
How to create an array in Simulink to save data and process these data in Simulink
you can use the "To Workspace" block to save data to a variable in the MATLAB workspace. You can then use the "From Workspace" b...

alrededor de 2 años hace | 0

Respondida
How to store the value of y in the loop being executed?
i think yo have so many end after the if statement I modified the number of bits per just to speed it up clc % BPSK M = 2...

más de 4 años hace | 1

Respondida
How can I access MS SQL Server from MATLAB web application
you could attempt to remove that line making sure data source is specified if I m reading the matlab documentation correctly or ...

más de 4 años hace | 0

Respondida
Does anyone recommend a solid state hard drive that will enhance MatLab's speed.
yes my recommendations is OCZ is the one I m using now their website https://ocz.com/us/ssd/ usually what I do is I go to the ...

alrededor de 6 años hace | 0

Respondida
S-Function read from texfile
<https://www.google.com/search?ei=kbkuW4KCNIbzgQaNoorYAw&q=s+function+read+from++text+file&oq=s+function+read+from++text+file&gs...

más de 6 años hace | 0

Respondida
How to use Fourier Transform to convert time to frequency domain for real time data ?
Please search the MATLAB documentation <https://www.mathworks.com/help/matlab/math/fourier-transforms.html>

más de 6 años hace | 0

Respondida
How to compare the results of different m files and display it in VB.net
Please check the link below : <https://www.mathworks.com/matlabcentral/answers/1810-opening-files-with-randomly-varying-file-na...

más de 6 años hace | 0

Respondida
Help with graphical input on a GUI axes
I think you may need to implement some while loop or logic to read the cursor location when is changed

casi 7 años hace | 0

Respondida
how to display scatter in GUI?
do you need to plot it use the scatter3 command please post your code Reference below : https://www.mathworks.com/help/ma...

alrededor de 7 años hace | 0

Respondida
can we interface simulink with matlab code?
you can configure Model Callback Functions to call MATLAB code at specific times in the model lifetime. You can use PostLoadFcn ...

alrededor de 7 años hace | 1

Respondida
How to use prototxt file in matlab?
See if this article helps <https://www.mathworks.com/matlabcentral/fileexchange/61735-neural-network-toolbox-importer-for-caffe...

alrededor de 7 años hace | 0

Respondida
Selecting lines from plot
so basically your handles variables or what ever action you assign to it would be the set function

alrededor de 7 años hace | 0

Respondida
Selecting lines from plot
you just need to follow this part of the example H(2) = plot(1:10, rand(1, 10), 'b'); set(H, 'ButtonDownFcn', {@LineSel...

alrededor de 7 años hace | 0

Respondida
saving multiple .mat files into .txt files
I found a similar question here dlmwrite function can be used may be you need just to pass the variable that is associated t...

alrededor de 7 años hace | 0

Respondida
could anyone help me to fix the following issue
I think may be you should check the idx

alrededor de 7 años hace | 0

Respondida
How can I use a while loop to check input for negative numbers and non-numerical input?
inputnum=input('Enter a positive number: '); while inputnum<0 fprintf('You entered a %d. \n\n', inputnum) input...

alrededor de 7 años hace | 0

Respondida
Calculate f(4) using newton's interpolating polynomials of order 1 through 4. Choose your base points to attain good accuracy.
Check this code though I m not sure function newton_interpolation(x,y,n,xx) % x and y are two Row Matrices ...

alrededor de 8 años hace | 0

Respondida
Simple question how do I adjust the for loop to go through the rows of the excel matrix one by one. Milesdriven adds the columns 2:11 of the first row, i want the calculation to be done for the next 54 rows as well.
filename = 'project3data.xlsx'; num = xlsread('project3data.xlsx'); for i = 1:55 for j =2:11 milesdriven = sum(n...

más de 8 años hace | 0

Respondida
I have a mistake in my loop.
function Opdrachtc clear; clc; fontSize = 15; vv=MDealer v=length(MDealer); for kk=1:v ...

más de 8 años hace | 0

| aceptada

Respondida
Too many output arguments.Why i am getting this issue
I m not sure exactly but check this code I think you might some thing you initalize to sum the variables then store it again ...

más de 8 años hace | 0

Respondida
Calculate shortest distance between 2 lines.
Data must be numeric, datetime, duration or an array convertible to double. instead of syms t you should have some thing like...

más de 8 años hace | 0

Respondida
Parachute Simulation using ODE45
You will have to construct the model you trying to solve ode45 is used to solve differential equation . You will have to f...

más de 8 años hace | 0

Respondida
hi everyone, what is meaning of this part of program?(CAN YOU WRİTE ANY COMMENT(S))
global nfile Qamp_mv Ramp_mv Samp_mv Tamp_mv P_1 Pamp_mv A flag c % Define global variables. if flag==4 % Condition i...

más de 8 años hace | 0

Respondida
Two-Point Boundary Value Problem
You will have to differneitate then solve Since x'=A(x/t)+By --- differnetiate A(x/t)+By for y relative to t Y'...

más de 8 años hace | 0

Respondida
• Given a three-phase power system with a medium-length transmission line, calculate the sending-end voltage and current by hand and by using Matlab code.
You will have to add more details from the problem like for example S value how did you arrive to Ir values to convert This...

más de 8 años hace | 0

Cargar más