Statistics
6 Questions
0 Answers
RANK
277,699
of 300,847
REPUTATION
0
CONTRIBUTIONS
6 Questions
0 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 21,094
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 171,279
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
Make a new variable based on data in the cell array.
I have a cell array called C. Each row in C has a different set of integerS stored as a cell I wan to write a code such that it...
2 years ago | 3 answers | 0
3
answersQuestion
making a connectivity array for an ellipse based of rectangles and traingles
I have the following code: clear all close all clc n = 3; % number of divisions on the boundary x1 = linspace(0,2,n); y1_x...
3 years ago | 1 answer | 0
1
answerQuestion
Array assembly by indexing in a loop
I have the following code: n = 4; x1 = linspace(0,2,n); y1_x1 = sqrt(1-( (x1.^2)/4 ) ); Y1_X1 = [] for i = 1:n Y1_X1(...
3 years ago | 1 answer | 0
1
answerQuestion
Generate inner values of y for each x based on n
I have the following code: clear all clc n = 4; % number of divisions on the boundary x1 = linspace(0,2,n); y1_x1 = sqrt(1-...
3 years ago | 1 answer | 0
1
answerQuestion
Extract points from generated mesh
I have the follwoing code: clear all clc e2 = antenna.Ellipse('Majoraxis',4,'Minoraxis',2) mesh(e2,'MaxEdgeLength',1e-1) ...
3 years ago | 1 answer | 0
1
answerQuestion
Generating a square mesh
I have found a book that teaches the solution of PDEs and plots the results. I want to change the plot to a square mesh instead...
3 years ago | 1 answer | 0
