Community Profile

photo

Diaa


ASU

Last seen: 5 Tage vor Aktiv seit 2014

Followers: 0   Following: 0

Kontakt

Statistiken

  • Knowledgeable Level 1
  • Thankful Level 3
  • First Answer
  • First Review

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


How to create two paths parallel to a non-uniform curve on its both sides?
Suppose I have a path y that can be defined in different ways x1 = 1:0.1:20; y1 = [3*x1(1:20) + 6, ... 5*x1(21:100) - 9...

9 Monate vor | 1 Antwort | 0

1

Antwort

Frage


MATLAB can't symbolically solve a definite integration
The following definite integration couldn't be symbolically solved by MATLAB. Is there a way to make it solvable by MATLAB? The...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Frage


Understanding how testCase.addTeardown works with @path
The following code is adopted from this blog post: classdef GoodFixturesTest < matlab.unittest.TestCase methods(Test...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Frage


How to robustly set class object properties in the class constructor when using name-value approach without handling them one-by-one?
For the following, is there any robust way to set the class object properties at once by copying each input struct field value t...

fast 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Examples of efficient and inefficient parallel computations on GPU
I am considering buying a new laptop, so I would like to know examples of efficient and inefficient usages of parallel computing...

mehr als 2 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Matlab Live Scripts displaying figures in seemingly random order when multiple code blocks with subplots are used
As a workaround, you can use this MATLAB mechanism in your favor by creating a duplicate dummy figure then delete it to show the...

mehr als 2 Jahre vor | 0

Frage


Find the normal vector at a specific point on a 3D surface defined by an equation
Consider the following code: rng('default') [Xs,Ys,Zs] = sphere; X = (0.99+0.01*rand(size(Xs))).*Xs; Y = (0.99+0.01*rand...

fast 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Find an index of a cell whose element satisfies a condition
Is there a way to economically fix the code below to make it work so that it returns the index of the cell element whose array h...

fast 3 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to show the Unit parameter in the signal attrbutes of a constant block?
For the attached Simulink model I created using MATLAB R2021a, how can I show the Unit parameter in the block parameters of the ...

fast 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
To change Current Folder to the folder of .m File
For live scripts, @Qi Wang suggested using this: fileparts(matlab.desktop.editor.getActiveFilename) to get the full path of t...

fast 3 Jahre vor | 4

Beantwortet
ode45 goes busy endlessly when using the sign of a state variable
Thanks to the explanation of Star Strider, the use of sign() can be replaced by fr*Mass*9.8)*(y(2)>0) to make it work.

fast 3 Jahre vor | 0

| akzeptiert

Frage


ode45 goes busy endlessly when using the sign of a state variable
This term "- fr*Mass*9.8*sign(y(2))" makes ode45 busy forever specifically when using 'sign(y(2))' I just need to make -fr*Mass...

fast 3 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Changing the same property of some axis children using subsasgn
How to make the following code work in order to change the 'Visible' property of some children plots whose handles are stored in...

fast 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How to write code in MATLAB?
Your code in the question is not clear to me, nevertheless, my code below can be edited to fulfil your needs. x = 1:10; % array...

etwa 3 Jahre vor | 0

Beantwortet
Working a definite integral
Read this Definite Integrals of Symbolic Expressions, then you can do syms x vpaintegral(1/sqrt(1-x^2)*(x^2+1.1202*x+0.2132),[...

mehr als 3 Jahre vor | 1

| akzeptiert

Frage


How to solve a set of symbolic equations for the same variable?
Is there a way to make the following work and solve the following set of symbolic equations for the same variable and save the o...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


MeshDensity: How to exactly set the number of evaluation points of fplot?
In the documentation, it is said under 'MeshDensity' option of 'fplot': "Number of evaluation points, specified as a number. T...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


'deal' doesn't distribute the elements of a calculated array out of cellfun
For the following syms syma symb eqns = [... syma*exp(symb)== 1,... syma*exp(symb*1500) == 5,... ]; vars = [s...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How do I skip items in a legend?
You can simply delete the last undesired entry by the following: % assume you plotted some curves before this line and all of t...

mehr als 3 Jahre vor | 1

Beantwortet
autorename if saved file already exist
Revisitng this old question, I followed the idea of Jan to come up with this solution of appending the existent file name with a...

mehr als 3 Jahre vor | 1

Frage


Is it possible to have an inline function inside a cell array to conditionally return an element to be stored?
Consider I have mycondition = true; truestatement = 'yes'; % returned by the inline function when mycondition is true falsest...

mehr als 3 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
How to selectively save the names and values of some workspace variables to a CSV file?
Thanks to the inspiring answer of @Rik, I found the following solution without the need to use for loop a = 3; b=7; c=5; d=9; ...

mehr als 3 Jahre vor | 0

Frage


How to selectively save the names and values of some workspace variables to a CSV file?
Consider the following a = 3; b=7; c=5; d=9; save('test.mat') data = load('test.mat'); toSave = { 'b' ; 'c' }; writece...

mehr als 3 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Write to an already opened Excel file
The following MATLAB code works well for writing eActiveSheetRange.Value to the range eActiveSheetRange However, I have t...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Live scripts stored in MATLAB Drive are assumed to be located in Temp folder
I have MATLAB R2019a on Win10 and MATLAB Drive Connector. Some live scripts are stored in the local MATLAB Drive folder. Howeve...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Reshaping Nodal Spatial Vectors into 3D Matrices for Countourslice
I have a problem of temperature field across a cubic domain. My nodes locations are stored in 3 column vectors of *x=[x1 x2 ....

mehr als 9 Jahre vor | 0 Antworten | 0

0

Antworten