Nirmal Hirani
Followers: 0 Following: 0
Statistics
All
RANK
213,293
of 295,569
REPUTATION
0
CONTRIBUTIONS
3 Questions
0 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 20,247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How to extract property values from an object array and put it into a new array?
classdef Datatest properties (SetAccess = 'public' ,GetAccess = 'public') Name end end % creating 4 objec...
2 years ago | 1 answer | 0
1
answerQuestion
How to find an index of an object from object array?
classdef data properties (SetAccess = 'public' ,GetAccess = 'public') Name end end d1 = data(); d2 =...
2 years ago | 1 answer | 0
1
answerQuestion
How to save portfolio objects to an array?
p = Portfolio; c = Portfolio; d = [p c] How do i store objects in an array and then extract any specific object from that...
2 years ago | 1 answer | 0
1
answerSolved
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
3 years ago