Ajith Thomas
Followers: 0 Following: 0
Feeds
提问
defining simulink variables through matlab srcript
how can I define variables through matlab script? I am using trial version
5 years 前 | 1 个回答 | 0
1
个回答提问
define variable in simulink
When I am defining variable in simulink, its showing error. I am using trial verion. can you help me on this?
5 years 前 | 0 个回答 | 0
0
个回答已回答
ASSIGNMENT: TEXT FILES Write a function called char_counter that counts the number of a certain character in a text file. The function takes two input arguments, fname, a char vector of the filename and character, the char it counts in the file.
my question is which all characters should be eliminated? on this question?
ASSIGNMENT: TEXT FILES Write a function called char_counter that counts the number of a certain character in a text file. The function takes two input arguments, fname, a char vector of the filename and character, the char it counts in the file.
my question is which all characters should be eliminated? on this question?
5 years 前 | 0
提问
Week 9, Assignment 2
Write a function called char_counter that counts the number of a certain character in a text file. The function takes two input ...
5 years 前 | 1 个回答 | 0
1
个回答已回答
Problem with logical indexing
function numfreeze=freezing(w) lowerthan_32=w(w<32); no_logical_values=lowerthan_32(lowerthan_32>=0); numfreeze=length(no_log...
Problem with logical indexing
function numfreeze=freezing(w) lowerthan_32=w(w<32); no_logical_values=lowerthan_32(lowerthan_32>=0); numfreeze=length(no_log...
5 years 前 | 0
已回答
counting no .of temperature less than 32 in array
function numfreeze=freezing(w) lowerthan_32=w(w<32); no_logical_values=lowerthan_32(lowerthan_32>=0); numfreeze=length(no_log...
counting no .of temperature less than 32 in array
function numfreeze=freezing(w) lowerthan_32=w(w<32); no_logical_values=lowerthan_32(lowerthan_32>=0); numfreeze=length(no_log...
5 years 前 | 0
提问
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid. If any of the inputs is not
unction valid=valid_date(year,month,date) if nargin==3 valid1=true; else valid=false; return end v1=[year]; v2=[mo...
5 years 前 | 11 个回答 | 0